forked from reg-viz/reg-suit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.27 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
{
"private": true,
"scripts": {
"clean": "rimraf packages/**/lib/ node_modules/reg-*",
"postinstall": "rm -rf node_modules/@types/react-dom/node_modules",
"bootstrap": "lerna bootstrap && lerna run prepublish",
"test": "lerna run test",
"lint": "tslint packages/*/src/**/*.ts packages/*/test/**/*.ts",
"build:io": "cd packages/reg-gh-app-front; npm run build",
"deploy:app": "cd packages/reg-gh-app; npm run deploy",
"deploy:io": "cd packages/reg-suit-toppage; npm run deploy",
"deploy": "npm run deploy:app && npm run build:io && npm run deploy:io",
"watch:interface": "tsc -w -p packages/reg-suit-interface/src/tsconfig.build.json",
"watch:core": "tsc -w -p packages/reg-suit-core/src/tsconfig.build.json",
"watch:cli": "tsc -w -p packages/reg-suit-cli/src/tsconfig.build.json",
"watch:util": "tsc -w -p packages/reg-suit-util/src/tsconfig.build.json",
"watch": "run-p watch:*"
},
"devDependencies": {
"@types/node": "8.0.8",
"avaron": "^0.0.11",
"electron": "^1.8.4",
"lerna": "2.11.0",
"npm-run-all": "^4.0.2",
"rimraf": "^2.6.1",
"tslint": "^5.4.3",
"typescript": "2.8.1"
},
"dependencies": {
"glob": "^7.1.2",
"tslint-eslint-rules": "^4.1.1"
},
"workspaces": [
"packages/*"
]
}