forked from the-guild-org/apollo-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 973 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 973 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
{
"private": true,
"license": "MIT",
"scripts": {
"postinstall": "npm run bootstrap",
"bootstrap": "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.2.0",
"@commitlint/config-angular": "6.1.3",
"@types/jest": "22.2.3",
"codecov": "3.0.2",
"husky": "0.14.3",
"jest": "23.0.1",
"lerna": "2.11.0",
"lint-staged": "7.1.2",
"prettier": "1.13.0",
"rimraf": "2.6.2",
"rollup": "0.59.4",
"tslint": "5.10.0",
"typescript": "2.7.2"
}
}