-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.98 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@manuscripts/transform",
"description": "ProseMirror transformer for Manuscripts applications",
"version": "3.0.26",
"repository": "github:Atypon-OpenSource/manuscripts-transform",
"license": "Apache-2.0",
"main": "dist/cjs",
"module": "dist/es",
"types": "dist/types",
"files": [
"dist"
],
"keywords": [
"prosemirror"
],
"scripts": {
"build": "npm-run-all --parallel build:*",
"build:cjs": "tsc --outDir dist/cjs --module commonjs --project tsconfig.build.json",
"build:es": "tsc --outDir dist/es --declarationDir dist/types --declaration --project tsconfig.build.json",
"dev": "yarn version-file && npm-run-all --parallel \"build:* --watch\"",
"version-file": "node -p \"'export const VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/version.ts",
"lint": "eslint src --ext .js,.ts",
"lint:fix": "eslint src --fix --ext .js,.ts",
"prebuild": "rimraf dist && yarn version-file",
"prettier": "prettier --write \"src/**/*.{ts,tsx}\" \"*.{js,json}\"",
"preversion": "npm-run-all --parallel typecheck lint build test",
"test": "jest --runInBand",
"test:debug": "DEBUG=manuscripts-transform yarn test",
"typecheck": "tsc --noEmit",
"version": "yarn build"
},
"dependencies": {
"@manuscripts/json-schema": "2.2.11",
"@manuscripts/library": "1.3.11",
"debug": "^4.3.4",
"jszip": "^3.10.1",
"lodash": "^4.17.21",
"mime": "^3.0.0",
"prosemirror-model": "^1.18.3",
"prosemirror-tables": "^1.3.5",
"prosemirror-utils": "^1.2.2",
"semver": "^7.6.2",
"uuid": "^9.0.0",
"w3c-xmlserializer": "^4.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@jats4r/dtds": "^0.0.8",
"@manuscripts/eslint-config": "^0.5.1",
"@types/debug": "^4.1.7",
"@types/jest": "^29.5.12",
"@types/lodash.pickby": "^4.6.7",
"@types/mime": "^3.0.1",
"@types/node": "^18.11.18",
"@types/uuid": "^9.0.0",
"@types/w3c-xmlserializer": "^2.0.2",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"babel-jest": "^29.3.1",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.7",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-mdx": "^2.0.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"husky": "^8.0.2",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"libxmljs2": "^0.33.0",
"migration-base": "npm:@manuscripts/transform@2.3.20",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.1",
"prosemirror-state": "^1.4.2",
"prosemirror-view": "^1.29.1",
"rimraf": "^3.0.2",
"typescript": "^4.0.5"
}
}