-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.46 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
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"start": "tsx watch ./src/index.ts",
"seed": "npx prisma db seed",
"reset-db:dev": "tsx ./prisma/reset-db.ts"
},
"prisma": {
"schema": "./prisma/schema.prisma",
"seed": "tsx prisma/seed.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@apollo/server": "^4.10.2",
"@faker-js/faker": "^8.4.1",
"@graphql-tools/schema": "^10.0.3",
"@prisma/client": "^5.11.0",
"apollo-server-express": "^3.13.0",
"express": "^4.19.2",
"firebase-admin": "^12.0.0",
"graphql": "^16.8.1",
"http-status": "^1.7.4",
"tsx": "^4.7.1",
"winston": "^3.13.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@graphql-codegen/cli": "5.0.2",
"@graphql-codegen/introspection": "4.0.3",
"@graphql-codegen/typescript": "4.0.6",
"@graphql-codegen/typescript-document-nodes": "4.0.6",
"@graphql-codegen/typescript-resolvers": "4.0.6",
"@types/node": "^20.12.2",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"nodemon": "^3.1.0",
"prettier": "3.2.5",
"prisma": "^5.11.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
}
}