forked from yanguoyu/neuron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.91 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
56
57
58
59
60
61
62
{
"name": "neuron",
"productName": "Neuron",
"description": "CKB Neuron Wallet",
"version": "0.101.3",
"private": true,
"author": {
"name": "Nervos Core Dev",
"email": "[email protected]",
"url": "https://github.com/nervosnetwork/neuron"
},
"repository": {
"type": "git",
"url": "https://github.com/nervosnetwork/neuron"
},
"license": "MIT",
"engines": {
"node": ">= 16.0",
"yarn": ">= 1.14"
},
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "npx cross-env lerna bootstrap && lerna link",
"start:ui": "cd packages/neuron-ui && yarn run start",
"start:wallet": "cd packages/neuron-wallet && yarn run start:debug",
"start": "concurrently \"cross-env BROWSER=none yarn run start:ui\" \"wait-on http://localhost:3000 && yarn run start:wallet\"",
"clean": "lerna run --stream clean",
"prebuild": "yarn clean",
"build": "lerna run --stream build",
"build:main": "lerna run build --scope=neuron-wallet",
"release": "yarn build && ./scripts/copy-ui-files.sh && ./scripts/release.sh",
"package:test": "yarn build && ./scripts/copy-ui-files.sh && ./scripts/package-for-test.sh",
"test": "lerna run --parallel test",
"test:ci": "yarn build:main && yarn test",
"lint": "lerna run --stream lint",
"postinstall": "lerna run build --scope=@nervina-labs/ckb-indexer",
"db:chain": "node ./node_modules/.bin/typeorm"
},
"husky": {
"hooks": {
"pre-commit": "lerna run --no-bail --stream precommit"
}
},
"devDependencies": {
"@types/jest": "24.0.18",
"@types/node": "16.11.7",
"@typescript-eslint/eslint-plugin": "2.19.0",
"@typescript-eslint/parser": "2.19.0",
"concurrently": "7.0.0",
"cross-env": "7.0.3",
"eslint": "6.7.2",
"husky": "3.0.5",
"lerna": "4.0.0",
"ncp": "2.0.0",
"ts-jest": "24.0.2",
"typescript": "3.8.2",
"wait-on": "6.0.0"
},
"dependencies": {}
}