-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 979 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 979 Bytes
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
{
"name": "root",
"private": true,
"engines": {
"node": "^10.13.0",
"yarn": "^1.12.3"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "polkadot-dev-build-ts",
"test": "jest -c ./jest/jest.config.js --coverage spec",
"lint": "npx tslint -c tslint.json --project . && npx prettier --list-different './packages/**/src/*.ts'"
},
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/preset-env": "^7.0.0-beta.47",
"@polkadot/dev": "^0.31.1",
"@polkadot/ts": "^0.1.86",
"@types/jest": "^24.0.15",
"cz-lerna-changelog": "^2.0.2",
"husky": "^2.7.0",
"jest": "24.8.0",
"jest-environment-node": "^24.0.0",
"lerna": "^3.13.1",
"prettier": "^1.13.5",
"pretty-quick": "^1.11.1",
"tslint": "^5.14.0",
"ts-jest": "^24.0.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged --pattern 'packages/**/src/**/*' && npx tslint -c tslint.json --project ."
}
}
}