-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 736 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 736 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
{
"name": "root",
"private": true,
"scripts": {
"postinstall": "npm run bootstrap",
"bootstrap": "lerna bootstrap",
"fmt": "lerna run fmt",
"fmt-check": "lerna run fmt-check",
"lint": "lerna run lint",
"test": "jest",
"build": "lerna run build",
"prepublish": "lerna run build",
"publish": "lerna publish"
},
"devDependencies": {
"@types/jest": "^24.0.13",
"jest": "^24.8.0",
"lerna": "^3.14.1",
"prettier": "^1.17.1",
"rimraf": "^2.6.3",
"rollup": "^1.12.3",
"rollup-plugin-sourcemaps": "^0.4.2",
"ts-jest": "^24.0.0",
"tslint": "^5.16.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.4.5"
}
}