forked from kamilkisiela/apollo-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 884 Bytes
/
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
{
"private": true,
"license": "MIT",
"scripts": {
"bootstrap": "npm i && lerna bootstrap",
"postbootstrap": "npm run build",
"prebuild": "rimraf packages/*/build/ packages/*/coverage/",
"build": "lerna run -- build",
"test": "lerna run -- test",
"prelint": "npm run prettier",
"lint": "lerna run -- lint",
"prettier": "prettier --config .prettierrc --write \"packages/*/{src,tests}/**/*.ts\"",
"deploy": "lerna run -- deploy",
"coverage": "codecov",
"precommit": "lint-staged",
"commitmsg": "commitlint -e"
},
"devDependencies": {
"@commitlint/cli": "6.1.3",
"@commitlint/config-angular": "6.1.3",
"@types/jest": "22.2.2",
"codecov": "3.0.0",
"husky": "0.14.3",
"jest": "21.2.1",
"lerna": "2.9.1",
"lint-staged": "7.0.0",
"prettier": "1.11.1",
"rimraf": "2.6.2",
"rollup": "0.57.1",
"tslint": "5.9.1",
"typescript": "2.8.1"
}
}