-
-
Notifications
You must be signed in to change notification settings - Fork 312
/
package.json
79 lines (79 loc) · 2.2 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "apollo-angular-monorepo",
"license": "MIT",
"private": true,
"workspaces": {
"packages": [
"packages/*",
"website"
]
},
"engines": {
"node": ">=16"
},
"scripts": {
"build": "yarn workspaces run build",
"ci-only:integration": "./scripts/integration tests",
"deploy": "yarn workspaces run deploy",
"format": "prettier --write \"{packages,website}/**/*.{ts,tsx,json}\"",
"now-build": "(cd website && yarn && yarn build && mv build ../public)",
"prebuild": "rimraf packages/*/build/",
"prerelease": "yarn build",
"release": "changeset publish",
"test": "yarn workspaces run test",
"test:e2e": "./scripts/run-e2e-locally.sh"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.0.1",
"@angular-devkit/core": "^18.0.1",
"@angular-devkit/schematics": "^18.0.1",
"@angular/animations": "^18.0.0",
"@angular/cli": "^18.0.1",
"@angular/common": "^18.0.0",
"@angular/compiler": "^18.0.0",
"@angular/compiler-cli": "^18.0.0",
"@angular/core": "^18.0.0",
"@angular/platform-browser": "^18.0.0",
"@angular/platform-browser-dynamic": "^18.0.0",
"@angular/platform-server": "^18.0.0",
"@angular/router": "^18.0.0",
"@apollo/client": "^3.10.4",
"@babel/core": "^7.24.6",
"@babel/preset-env": "^7.24.6",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.3",
"@schematics/angular": "^18.0.1",
"@theguild/prettier-config": "^2.0.1",
"@types/jest": "^29.5.4",
"@types/node": "^20.12.12",
"babel-jest": "^29.6.4",
"browserlist": "^1.0.1",
"cpx2": "^7.0.1",
"graphql": "^16.8.0",
"husky": "^9.0.0",
"jest": "^29.6.4",
"jest-preset-angular": "^14.1.0",
"jest-zone-patch": "^0.0.10",
"lint-staged": "^15.2.5",
"ng-packagr": "^18.0.0",
"prettier": "^3.0.2",
"react": "^18.3.1",
"rimraf": "^5.0.7",
"rxjs": "~7.8.0",
"shelljs": "^0.8.5",
"ts-jest": "^29.1.3",
"tslib": "^2.3.0",
"typescript": "5.4.5",
"zone.js": "~0.14.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"packages/**/{src,tests}/**/*.ts": [
"prettier --write"
]
}
}