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
42 lines (42 loc) 路 963 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) 路 963 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
35
36
37
38
39
40
41
42
{
"name": "apollo-angular-monorepo",
"private": true,
"license": "MIT",
"scripts": {
"prebuild": "rimraf packages/*/build/",
"build": "yarn workspaces run build",
"test": "yarn workspaces run test",
"format": "prettier --write \"packages/**/*.ts\"",
"deploy": "yarn workspaces run deploy",
"now-build": "(cd website && yarn && yarn build && mv build ../public)"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@types/jest": "26.0.15",
"husky": "4.3.0",
"jest": "26.6.3",
"lint-staged": "10.5.1",
"prettier": "2.1.2",
"react": "17.0.1",
"rimraf": "3.0.2",
"shelljs": "0.8.4",
"typescript": "4.0.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"packages/**/{src,tests}/**/*.ts": [
"prettier --write"
]
},
"prettier": {
"bracketSpacing": false,
"singleQuote": true,
"trailingComma": "all"
}
}