-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
88 lines (88 loc) · 2.55 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": "node .husky/install.mjs",
"start": "gulp dev",
"build": "gulp build",
"build:prod": "gulp build --prod",
"lint": "eslint .",
"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.10.4",
"@godaddy/terminus": "4.12.1",
"@graphql-tools/load-files": "7.0.0",
"@graphql-tools/merge": "9.0.4",
"@graphql-tools/schema": "10.0.4",
"bcryptjs": "2.4.3",
"cookie-parser": "1.4.6",
"cors": "2.8.5",
"dataloader": "2.2.2",
"dotenv": "16.4.5",
"express": "4.19.2",
"graphql": "16.8.1",
"graphql-depth-limit": "1.1.0",
"graphql-redis-subscriptions": "2.6.1",
"graphql-scalars": "1.23.0",
"graphql-subscriptions": "2.0.0",
"graphql-ws": "5.16.0",
"helmet": "7.1.0",
"ioredis": "5.4.1",
"kysely": "0.27.3",
"pg": "8.11.5",
"supertokens-node": "18.0.0",
"tsconfig-paths": "4.2.0",
"uuid": "9.0.1",
"ws": "8.17.0",
"zod": "3.23.8"
},
"devDependencies": {
"@eslint/js": "9.4.0",
"@graphql-codegen/add": "5.0.2",
"@graphql-codegen/cli": "5.0.2",
"@graphql-codegen/introspection": "4.0.3",
"@graphql-codegen/typescript": "4.0.7",
"@graphql-codegen/typescript-resolvers": "4.1.0",
"@types/bcryptjs": "2.4.6",
"@types/cookie-parser": "1.4.7",
"@types/cors": "2.8.17",
"@types/eslint__js": "8.42.3",
"@types/express": "4.17.21",
"@types/graphql-depth-limit": "1.1.6",
"@types/gulp": "4.0.17",
"@types/node": "20.13.0",
"@types/pg": "8.11.6",
"@types/uuid": "9.0.8",
"@types/ws": "8.5.10",
"eslint": "9.4.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"gulp": "5.0.0",
"gulp-run-command": "0.0.10",
"husky": "9.0.11",
"lint-staged": "15.2.5",
"prettier": "3.3.0",
"prisma": "5.14.0",
"prisma-kysely": "1.8.0",
"rimraf": "5.0.7",
"ts-node": "10.9.2",
"tsc-alias": "1.8.10",
"tsx": "4.11.0",
"typescript": "5.4.5",
"typescript-eslint": "7.11.0"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]"
}
},
"prisma": {
"seed": "tsx -r tsconfig-paths/register prisma/seed.ts"
}
}