forked from kamilkisiela/apollo-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 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
80
81
82
{
"name": "apollo-angular-monorepo",
"private": true,
"license": "MIT",
"engines": {
"node": ">=14"
},
"scripts": {
"postinstall": "yarn workspace website patch-package",
"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)",
"ci-only:integration": "./scripts/integration tests"
},
"workspaces": {
"packages": [
"packages/*",
"website"
]
},
"devDependencies": {
"@angular-devkit/build-angular": "^14.0.6",
"@angular-devkit/core": "^14.0.6",
"@angular-devkit/schematics": "^14.0.6",
"@angular/animations": "^14.0.6",
"@angular/cli": "^14.0.6",
"@angular/common": "^14.0.6",
"@angular/compiler": "^14.0.6",
"@angular/compiler-cli": "^14.0.6",
"@angular/core": "^14.0.6",
"@angular/platform-browser": "^14.0.6",
"@angular/platform-browser-dynamic": "^14.0.6",
"@angular/platform-server": "^14.0.6",
"@angular/router": "^14.0.6",
"@apollo/client": "3.7.5",
"@babel/core": "^7.17.4",
"@babel/preset-env": "^7.16.11",
"@schematics/angular": "^14.0.6",
"@theguild/prettier-config": "^0.1.0",
"@types/jest": "28.1.8",
"@types/node": "16.18.11",
"babel-jest": "^28.1.3",
"browserlist": "^1.0.1",
"cpx": "1.5.0",
"graphql": "16.6.0",
"husky": "4.3.8",
"jest": "^28.1.3",
"jest-preset-angular": "^12.2.0",
"jest-zone-patch": "0.0.10",
"lint-staged": "11.2.6",
"ng-packagr": "^14.0.3",
"prettier": "2.8.3",
"react": "17.0.2",
"rimraf": "3.0.2",
"rxjs": "^7.5.4",
"shelljs": "0.8.5",
"ts-jest": "^28.0.6",
"tslib": "^2.3.0",
"typescript": "4.8.4",
"zone.js": "~0.12.0",
"@changesets/cli": "^2.26.0",
"@changesets/changelog-github": "0.4.8"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"packages/**/{src,tests}/**/*.ts": [
"prettier --write"
]
},
"browserslist": [
"defaults",
"not IE 11",
"maintained node versions"
]
}