-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.75 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
{
"name": "root",
"private": true,
"scripts": {
"lint": "lerna run --stream lint",
"test": "lerna run --stream test",
"prePush": "npm-run-all prePush:**",
"prePush:lint": "yarn lint",
"prePush:test": "yarn test",
"bump": "lerna version --no-changelog --no-commit-hooks --no-git-tag-version --no-push"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@rollup/plugin-babel": "^5.1.0",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@types/node": "^14.0.27",
"@types/resize-observer-browser": "^0.1.6",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"@webcomponents/webcomponentsjs": "^2.4.4",
"core-js": "3.6.5",
"cross-env": "^7.0.2",
"eslint": "^7.6.0",
"globby": "^11.0.1",
"husky": "^4.2.5",
"lerna": "^3.22.1",
"live-server": "^1.2.1",
"npm-run-all": "^4.1.5",
"regenerator-runtime": "^0.13.7",
"rollup": "^2.23.1",
"rollup-plugin-polyfill": "^3.0.0",
"rollup-plugin-sourcemaps": "^0.6.2",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-typescript2": "^0.30.0",
"tslib": "^2.0.1",
"typescript": "^3.9.7"
},
"husky": {
"hooks": {
"pre-push": "yarn prePush"
}
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/codemirror"
]
}
}