forked from nervosnetwork/neuron
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.83 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.83 KB
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
{
"name": "@nervosnetwork/neuron",
"productName": "Neuron",
"description": "CKB Neuron Wallet",
"version": "0.1.0",
"private": true,
"author": {
"name": "Nervos Core Dev",
"email": "dev@nervos.org",
"url": "https://github.com/nervosnetwork/neuron"
},
"license": "MIT",
"engines": {
"node": ">= 11.10",
"yarn": ">= 1.12"
},
"workspaces": [
"packages/*"
],
"scripts": {
"start:ui": "lerna run --scope=@nervosnetwork/neuron-ui start",
"start": "concurrently \"cross-env BROWSER=none yarn run start:ui\" \"wait-on http://localhost:3000 && cd packages/neuron-wallet && yarn run start:dev\"",
"build": "lerna run build",
"clean": "lerna run clean",
"package": "yarn clean && yarn build && ./packages/neuron-wallet/script/package.sh",
"bootstrap": "lerna bootstrap && lerna link",
"lint": "lerna run lint",
"test": "lerna run --parallel test",
"precommit": "lerna run precommit",
"postinstall": "npm rebuild tiny-secp256k1 && lerna run rebuild:nativemodules"
},
"devDependencies": {
"@cryptape/sdk-ts-config": "0.0.1",
"@types/jest": "^24.0.11",
"@typescript-eslint/eslint-plugin": "1.6.0",
"@typescript-eslint/parser": "1.6.0",
"concurrently": "^4.1.0",
"cross-env": "^5.2.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"lerna": "^3.13.2",
"nodemon": "^1.18.11",
"prettier": "^1.17.0",
"ts-jest": "^24.0.2",
"typescript": "^3.4.1",
"wait-on": "^3.2.0"
},
"dependencies": {},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}