forked from swtcca/swtclib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.89 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": "root",
"private": true,
"husky": {
"hooks": {
"pre-commit": "npm run prettier"
}
},
"scripts": {
"bootstrap": "lerna clean --yes && lerna bootstrap --hoist && lerna run compile --stream",
"docs:dev": "echo vuepress dev docs",
"docs:build": "echo vuepress build docs",
"lerna": "lerna",
"clean": "lerna run clean; lerna clean --yes",
"cleanall": "lerna run clean; lerna clean --yes && rm -fr node_modules package-lock.json",
"build": "lerna run build --stream",
"lint": "lerna run tslint --stream; lerna run tsc --stream",
"prettier": "pretty-quick --staged --no-restage --verbose --bail",
"pretty": "lerna run pretty-quick --stream",
"test": "npm run bootstrap && npm run lint && npm run testonly",
"testonly": "lerna run compile --stream && lerna run build --stream && lerna run test --stream",
"testreal": "lerna run compile --stream && lerna run build --stream && lerna run test:api --stream"
},
"dependencies": {
"lerna": "^3.20.2",
"husky": "^2.7.0",
"jshint": "^2.10.2",
"prettier": "^1.19.1",
"pretty-quick": "^1.11.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.1",
"@rollup/plugin-inject": "^4.0.0",
"@rollup/plugin-json": "^4.0.1",
"@rollup/plugin-node-resolve": "^7.0.0",
"@rollup/plugin-typescript": "^2.1.0",
"@types/jest": "^24.9.1",
"@types/node": "^12.7.1",
"chai-json-schema": "^1.5.1",
"chai": "^4.2.0",
"jest": "^25.0.0",
"jest-esm-transformer": "^1.0.0",
"mocha": "^6.2.0",
"nyc": "^15.0.0",
"rollup-plugin-terser": "^5.2.0",
"rollup": "^1.29.1",
"sinon": "^7.4.1",
"supertest": "^4.0.2",
"swtc-tum3": "^0.1.3",
"ts-jest": "^25.0.0",
"tslint": "^5.20.0",
"tum3-eth-abi": "^1.0.2",
"typescript": "^3.7.5",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack": "^4.41.6"
}
}