forked from nervosnetwork/keypering
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.68 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
{
"name": "keypering",
"version": "1.0.0",
"private": true,
"description": "",
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "npx lerna bootstrap",
"start": "npm run build:specs && npx cross-env BROWSER=none npx lerna run --concurrency 2 start",
"test": "npx lerna run test --scope=@keypering/app",
"test:coverage": "npx lerna run test:coverage --scope=@keypering/app",
"build": "npx lerna run --parallel build",
"build:specs": "npx lerna run build --scope=@keypering/specs",
"bundle:ui": "ncp ./packages/ui/build ./packages/app/public/ui",
"clean:build": "npx lerna run --parallel clean:build",
"release": "npm run clean:build && npm run build && npm run bundle:ui && ./scripts/release.sh"
},
"husky": {
"hooks": {
"pre-commit": "npx lerna run --no-bail --stream precommit"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/nervosnetwork/keypering.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/nervosnetwork/keypering/issues"
},
"homepage": "https://nervosnetwork.github.io/keypering",
"devDependencies": {
"@types/jest": "26.0.9",
"@typescript-eslint/eslint-plugin": "3.8.0",
"@typescript-eslint/parser": "3.8.0",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.2.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-react": "7.20.5",
"eslint-plugin-react-hooks": "4.0.8",
"husky": "4.2.5",
"lerna": "3.22.1",
"lint-staged": "10.2.11",
"ncp": "2.0.0",
"nodemon": "2.0.4",
"rimraf": "3.0.2",
"ts-jest": "26.1.4",
"typescript": "3.9.7"
}
}