This repository has been archived by the owner on Nov 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
58 lines (58 loc) · 1.52 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
{
"name": "chainx-js",
"private": true,
"scripts": {
"build": "yarn build:clear && babel-node ./scripts/build",
"build:clear": "babel-node ./scripts/clearBuild",
"test": "NODE_ENV= jest",
"test:unit": "NODE_ENV= jest --testPathIgnorePatterns e2e",
"build:metadata": "babel-node ./scripts/metadataJsonWrite",
"build:rpc": "babel-node ./scripts/rpcJsonWrite",
"release": "yarn build && lerna publish --registry=https://registry.npmjs.org/",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@babel/runtime": "^7.2.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.8.0",
"chalk": "^2.4.2",
"core-js": "^3.2.1",
"execa": "^1.0.0",
"glob": "^7.1.3",
"husky": "^2.3.0",
"jest": "^24.8.0",
"lerna": "^3.6.0",
"lint-staged": "^8.1.0",
"mock-socket": "^8.0.5",
"nock": "^10.0.4",
"prettier": "^1.15.3",
"regenerator-runtime": "^0.13.1",
"rimraf": "^2.6.3",
"vuepress": "^1.4.0",
"yargs": "^13.2.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,json}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"ansi-styles": "^3.2.1"
}
}