-
-
Notifications
You must be signed in to change notification settings - Fork 311
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.03 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.03 KB
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
{
"name": "apollo-angular-monorepo",
"license": "MIT",
"private": true,
"packageManager": "pnpm@10.33.0",
"scripts": {
"build": "pnpm run --recursive build",
"ci-only:integration": "./scripts/integration tests",
"deploy": "pnpm run --recursive deploy",
"format": "prettier --write .",
"now-build": "(cd website && pnpm install && pnpm build && mv build ../public)",
"prebuild": "rimraf packages/*/build/",
"prerelease": "pnpm build",
"release": "changeset publish",
"test": "pnpm run --recursive test",
"test:e2e": "./scripts/run-e2e-locally.sh"
},
"devDependencies": {
"@angular/cli": "^19.2.0",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.3",
"@theguild/prettier-config": "^2.0.1",
"husky": "^9.0.0",
"lint-staged": "^16.4.0",
"prettier": "^3.7.1",
"rimraf": "^6.1.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"packages/**/{src,tests}/**/*.ts": [
"prettier --write"
]
}
}