-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.83 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
{
"name": "apollo-orbit",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "lerna run build --scope @apollo-orbit/*",
"clean": "lerna run clean --scope @apollo-orbit/*",
"clean:node_modules": "npx rimraf --glob **/node_modules",
"test": "jest --no-watchman --no-cache",
"test:coverage": "yarn test --coverage",
"lint": "eslint --ext .ts,.tsx .",
"postinstall": "link-workspaces --silent && node scripts/copySymlinks.js"
},
"workspaces": {
"packages": [
"integration/*",
"packages/*"
],
"nohoist": [
"@integration/angular/@angular/*",
"**/ts-jest"
]
},
"devDependencies": {
"@angular/compiler": "^18.0.0",
"@angular/common": "^18.0.0",
"@angular/compiler-cli": "^18.0.0",
"@angular/core": "^18.0.0",
"@apollo/client": "^3.11.2",
"@graphql-codegen/add": "^5.0.3",
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/typed-document-node": "^5.0.9",
"@graphql-codegen/typescript": "^4.0.9",
"@graphql-codegen/typescript-operations": "^4.2.3",
"@octokit/core": "^6.1.2",
"@types/jest": "^29.5.12",
"@types/node": "^22.0.2",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"concurrently": "^8.2.2",
"graphql": "^16.9.0",
"husky": "^9.1.4",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lerna": "^8.1.7",
"link-workspaces": "^1.1.0",
"lint-staged": "^15.2.7",
"ng-packagr": "^18.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-scripts": "5.0.1",
"rimraf": "^6.0.1",
"rxjs": "^7.8.1",
"ts-jest": "^29.2.3",
"tslib": "^2.6.3",
"typescript": "~5.5.4",
"zone.js": "~0.14.8"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
]
}
}