forked from reg-viz/reg-suit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.53 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
{
"private": true,
"scripts": {
"clean": "rimraf \"packages/*/lib\"",
"build": "lerna run prepublish",
"bootstrap": "lerna bootstrap && yarn build",
"test": "lerna run test",
"prettier": "prettier \"*.md\" \"*.json\" \"*.yml\" \"packages/**/*\"",
"lint:eslint": "eslint \"packages/*/{src,e2e}/**/*.{ts,tsx}\"",
"format": "yarn prettier --write",
"format:check": "yarn prettier --check",
"lint": "run-s format:check lint:eslint",
"build:io": "cd packages/reg-suit-toppage; npm run build",
"deploy:io": "cd packages/reg-suit-toppage; npm run deploy",
"deploy:packages": "lerna publish --yes from-package",
"deploy": "run-s deploy:*",
"watch:interface": "tsc -w -p packages/reg-suit-interface/tsconfig.build.json",
"watch:core": "tsc -w -p packages/reg-suit-core/tsconfig.build.json",
"watch:cli": "tsc -w -p packages/reg-suit-cli/tsconfig.build.json",
"watch:util": "tsc -w -p packages/reg-suit-util/tsconfig.build.json",
"watch": "run-p watch:*",
"postinstall": "husky install"
},
"devDependencies": {
"@types/node": "14.17.5",
"@typescript-eslint/eslint-plugin": "4.26.1",
"@typescript-eslint/parser": "4.26.1",
"eslint": "7.29.0",
"eslint-config-prettier": "8.3.0",
"husky": "7.0.1",
"lerna": "4.0.0",
"npm-run-all": "4.1.5",
"prettier": "2.3.2",
"pretty-quick": "3.1.1",
"rimraf": "3.0.2",
"ts-node": "10.1.0",
"typescript": "4.3.5",
"typescript-eslint-language-service": "4.1.4"
},
"workspaces": [
"packages/*"
]
}