forked from kamilkisiela/apollo-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 896 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": "^3.1.3",
"@commitlint/config-angular": "^3.1.1",
"@types/jest": "^21.1.2",
"codecov": "^2.3.1",
"husky": "^0.14.3",
"jest": "^21.2.1",
"lerna": "^2.4.0",
"lint-staged": "^4.2.3",
"prettier": "^1.7.4",
"rimraf": "^2.6.2",
"rollup": "^0.50.0",
"tslint": "^5.7.0",
"typescript": "^2.5.3"
}
}