forked from kamilkisiela/apollo-angular
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 802 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
{
"name": "apollo-angular-monorepo",
"private": true,
"license": "MIT",
"scripts": {
"postinstall": "node ./scripts/netlify-check.js 'yarn build'",
"prebuild": "rimraf packages/*/build/ packages/*/coverage/",
"build": "lerna run build",
"test": "lerna run test",
"format": "prettier --config .prettierrc --write \"packages/**/*.ts\"",
"deploy": "lerna run deploy",
"coverage": "codecov",
"precommit": "lint-staged"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@types/jest": "23.3.13",
"codecov": "3.3.0",
"husky": "1.3.1",
"jest": "24.5.0",
"lerna": "3.13.2",
"lint-staged": "8.1.5",
"prettier": "1.16.4",
"rimraf": "2.6.3",
"shelljs": "0.8.3",
"tsickle": "0.34.3",
"typescript": "3.2.4"
}
}