forked from kamilkisiela/apollo-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 856 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
34
35
36
37
38
39
40
41
{
"name": "apollo-angular-monorepo",
"private": true,
"license": "MIT",
"scripts": {
"prebuild": "rimraf packages/*/build/",
"build": "lerna run build",
"test": "lerna run test",
"format": "prettier --write \"packages/**/*.ts\"",
"deploy": "lerna run deploy"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@types/jest": "26.0.4",
"husky": "4.2.5",
"jest": "26.1.0",
"lerna": "3.22.1",
"lint-staged": "10.2.11",
"prettier": "2.0.5",
"rimraf": "3.0.2",
"shelljs": "0.8.4",
"typescript": "3.9.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"packages/**/{src,tests}/**/*.ts": [
"prettier --write"
]
},
"prettier": {
"bracketSpacing": false,
"singleQuote": true,
"trailingComma": "all"
}
}