-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
37 lines (37 loc) · 1.16 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
{
"private": true,
"scripts": {
"clean": "rimraf packages/**/lib/ node_modules/reg-*",
"postinstall": "rm -rf node_modules/@types/react-dom/node_modules && rm -rf node_modules/@types/jsonwebtoken/node_modules && rm -rf node_modules/@types/request/node_modules",
"bootstrap": "lerna bootstrap && lerna run prepublish",
"test": "lerna run test",
"lint": "tslint packages/*/src/**/*.ts packages/*/test/**/*.ts",
"watch": "run-p watch:*",
"watch:backend": "cd packages/backend && npm start",
"watch:frontend": "cd packages/frontend && npm start",
"deploy": "lerna run deploy",
"publish:npm": "lerna publish from-package --yes"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reg-viz/gh-app.git"
},
"keywords": [],
"author": "Quramy",
"license": "MIT",
"bugs": {
"url": "https://github.com/reg-viz/gh-app/issues"
},
"homepage": "https://github.com/reg-viz/gh-app#readme",
"devDependencies": {
"lerna": "^3.16.4",
"npm-run-all": "^4.1.5",
"rimraf": "^2.6.1",
"tslint": "^5.4.3",
"tslint-eslint-rules": "^4.1.1",
"typescript": "^3.5.3"
},
"workspaces": [
"packages/*"
]
}