-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
51 lines (51 loc) · 2.23 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
{
"name": "netv",
"private": true,
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5",
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@babel/preset-env": "^7.9.6",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"eslint": "^7.14.0",
"eslint-config-alloy": "^3.7.2",
"git-cz": "^4.8.0",
"lerna": "^4.0.0",
"ts-loader": "^7.0.4",
"typescript": "^3.9.3",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.12",
"webpack-merge": "^5.7.3"
},
"scripts": {
"bootstrap": "npm install && lerna bootstrap",
"build": "lerna run build",
"watch": "lerna run watch --parallel",
"lint": "npm run lint:netv && npm run lint:layout && npm run lint:netv && lint:lasso",
"benchmarks": "cd ./packages/netv && npm run build:benchmarks && cd benchmarks && index.html",
"build:netv": "cd ./packages/netv && npm run build",
"watch:netv": "cd ./packages/netv && npm run watch",
"lint:netv": "cd ./packages/netv && npm run lint",
"build:layout": "cd ./packages/layout && npm run build",
"watch:layout": "cd ./packages/layout && npm run watch",
"lint:layout": "cd ./packages/layout && npm run lint",
"build:lasso-selection": "cd ./packages/lasso-selection && npm run build",
"watch:lasso-selection": "cd ./packages/lasso-selection && npm run watch",
"lint:lasso-selection": "cd ./packages/lasso-selection && npm run lint",
"build:box-selection": "cd ./packages/box-selection && npm run build",
"watch:box-selection": "cd ./packages/box-selection && npm run watch",
"lint:box-selection": "cd ./packages/box-selection && npm run lint",
"build:label": "cd ./packages/label && npm run build",
"watch:label": "cd ./packages/label && npm run watch",
"lint:label": "cd ./packages/label && npm run lint"
},
"config": {
"commitizen": {
"path": "./node_modules/git-cz"
}
}
}