-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.63 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
{
"name": "apollo",
"version": "0.0.0",
"private": true,
"engines": {
"node": "^18.12.1",
"yarn": "^1.22"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/backend",
"**/backend/**",
"**/frontend",
"**/frontend/**"
]
},
"scripts": {
"all": "yarn clean && yarn compile",
"compile": "yarn workspaces run compile",
"clean": "yarn workspaces run clean",
"lint": "yarn workspaces run eslint && yarn workspaces run prettier",
"eslint": "yarn workspaces run eslint",
"prettier": "yarn workspaces run prettier",
"test": "yarn workspaces run test",
"prepare": "yarn run compile",
"pretest": "yarn run compile"
},
"devDependencies": {
"@apollo/server": "4.7.1",
"@graphql-codegen/add": "4.0.1",
"@graphql-codegen/cli": "3.3.1",
"@graphql-codegen/client-preset": "3.0.1",
"@graphql-codegen/introspection": "3.0.1",
"@graphql-codegen/typescript": "3.0.4",
"@graphql-codegen/typescript-resolvers": "3.2.1",
"@graphql-tools/schema": "9.0.19",
"@types/graphql-depth-limit": "1.1.3",
"@types/jest": "29.5.1",
"@types/node": "18.16.3",
"@types/supertest": "2.0.12",
"@typescript-eslint/eslint-plugin": "5.59.2",
"@typescript-eslint/parser": "5.59.2",
"eslint": "8.39.0",
"eslint-config-prettier": "8.8.0",
"graphql": "16.6.0",
"graphql-constraint-directive": "v2",
"graphql-depth-limit": "1.1.0",
"graphql-tag": "2.12.6",
"jest": "29.5.0",
"prettier": "2.8.8",
"rimraf": "5.0.0",
"supertest": "6.3.3",
"ts-jest": "29.1.0",
"typescript": "5.0.4"
}
}