-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 3.21 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
87
88
89
90
{
"name": "root",
"private": true,
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-typescript": "^8.2.1",
"@testing-library/jest-dom": "^5.11.9",
"@types/common-tags": "^1.8.0",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.34",
"@types/prosemirror-commands": "^1.0.3",
"@types/prosemirror-history": "^1.0.1",
"@types/prosemirror-inputrules": "^1.0.4",
"@types/prosemirror-keymap": "^1.0.3",
"@types/prosemirror-model": "^1.7.2",
"@types/prosemirror-state": "^1.2.5",
"@types/prosemirror-view": "^1.15.1",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"command-line-args": "^5.1.1",
"common-tags": "^1.8.0",
"copy-webpack-plugin": "^8.1.1",
"css-loader": "^5.1.3",
"css-minimizer-webpack-plugin": "^1.3.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-tui": "^4.0.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-vue": "^7.7.0",
"eslint-webpack-plugin": "^2.5.2",
"filemanager-webpack-plugin": "^4.0.0",
"html-webpack-plugin": "^5.3.1",
"http-proxy": "^1.18.1",
"jest": "^26.6.3",
"jest-esm-transformer": "^1.0.0",
"jest-serializer-html": "^7.0.0",
"lerna": "^3.20.2",
"mini-css-extract-plugin": "^1.3.9",
"node-fetch": "^2.6.1",
"prettier": "^2.1.2",
"resize-observer-polyfill": "^1.5.1",
"rollup": "^2.52.0",
"rollup-plugin-banner": "^0.2.1",
"rollup-plugin-vue": "^5.1.9",
"snowpack": "^3.0.13",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.1.1",
"ts-jest": "^26.5.3",
"ts-loader": "^8.0.18",
"tslib": "^2.1.0",
"tui-code-snippet": "^2.3.2",
"typescript": "^4.2.3",
"url-loader": "^4.1.1",
"vm": "^0.1.0",
"vue-eslint-parser": "^7.6.0",
"webpack": "^5.26.0",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2",
"webpack-glob-entry": "^2.1.1",
"webpack-merge": "^5.7.3"
},
"scripts": {
"lint:all": "lerna run --stream lint",
"test:all": "jest",
"test:types:all": "lerna run --stream test:types",
"build:all": "lerna run --stream build",
"lint": "node ./scripts/pkg-script.js --script lint --type $type",
"test": "node ./scripts/pkg-script.js --script test --type $type",
"test:ci": "node ./scripts/pkg-script.js --script test:ci --type $type",
"test:types": "node ./scripts/pkg-script.js --script test:types --type $type",
"serve": "node ./scripts/pkg-script.js --script serve --type $type",
"serve:ie": "node ./scripts/pkg-script.js --script serve:ie --type $type",
"build": "node ./scripts/pkg-script.js --script build --type $type",
"doc:dev": "node ./scripts/pkg-script.js --script doc:dev --type editor",
"doc": "node ./scripts/pkg-script.js --script doc --type editor",
"publish:cdn": "node ./scripts/publish-cdn.js"
},
"workspaces": [
"apps/*",
"libs/*",
"plugins/*"
]
}