forked from cerinoligutom/GraphQL-Starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.57 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
83
84
85
86
87
88
{
"name": "graphql-starter",
"type": "module",
"private": true,
"scripts": {
"prepare": "husky install",
"start": "gulp dev",
"build": "gulp build",
"build:prod": "gulp build --prod",
"lint": "eslint ./src",
"prettier": "prettier --write \"src/**/*.{js,ts,json,css,scss,md}\"",
"test": "echo \"No test specified\" && exit 0",
"tsc-check": "tsc --noEmit",
"generate:gql-types": "graphql-codegen"
},
"dependencies": {
"@apollo/server": "4.6.0",
"@godaddy/terminus": "4.11.2",
"@graphql-tools/load-files": "6.6.1",
"@graphql-tools/merge": "8.4.1",
"@graphql-tools/schema": "9.0.18",
"bcryptjs": "2.4.3",
"cookie-parser": "1.4.6",
"cors": "2.8.5",
"dataloader": "2.2.2",
"dotenv": "16.0.3",
"express": "4.18.2",
"graphql": "16.6.0",
"graphql-depth-limit": "1.1.0",
"graphql-redis-subscriptions": "2.6.0",
"graphql-scalars": "1.21.3",
"graphql-subscriptions": "2.0.0",
"graphql-ws": "5.12.1",
"helmet": "6.1.5",
"ioredis": "5.3.2",
"kysely": "0.24.2",
"pg": "8.10.0",
"supertokens-node": "13.4.1",
"tsconfig-paths": "4.2.0",
"uuid": "9.0.0",
"ws": "8.13.0",
"zod": "3.21.4"
},
"devDependencies": {
"@graphql-codegen/add": "4.0.1",
"@graphql-codegen/cli": "3.3.0",
"@graphql-codegen/introspection": "3.0.1",
"@graphql-codegen/typescript": "3.0.3",
"@graphql-codegen/typescript-resolvers": "3.2.0",
"@rushstack/eslint-patch": "1.2.0",
"@types/bcryptjs": "2.4.2",
"@types/cookie-parser": "1.4.3",
"@types/cors": "2.8.13",
"@types/express": "4.17.17",
"@types/graphql-depth-limit": "1.1.3",
"@types/gulp": "4.0.10",
"@types/node": "18.15.11",
"@types/pg": "8.6.6",
"@types/uuid": "9.0.1",
"@types/ws": "8.5.4",
"@typescript-eslint/eslint-plugin": "5.58.0",
"@typescript-eslint/parser": "5.58.0",
"eslint": "8.38.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"gulp": "4.0.2",
"gulp-run-command": "0.0.10",
"husky": "8.0.3",
"lint-staged": "13.2.1",
"prettier": "2.8.7",
"prisma": "4.12.0",
"prisma-kysely": "1.1.0",
"rimraf": "5.0.0",
"ts-node": "10.9.1",
"tsc-alias": "1.8.5",
"tsx": "3.12.6",
"typescript": "5.0.4"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]"
}
},
"prisma": {
"seed": "tsx -r tsconfig-paths/register prisma/seed.ts"
}
}