-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.36 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.36 KB
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
{
"name": "node-prisma-graphql-backend",
"version": "1.0.0",
"description": "Node Prisma GraphQL Backend",
"main": "dist/server.js",
"scripts": {
"build": "rm -rf dist && tsc && tsc-alias",
"db:recreate": "prisma db push --force-reset && prisma db seed",
"db:seed": "prisma db seed",
"dev": "nodemon",
"start": "NODE_ENV=production && node dist/server.js",
"test": "jest",
"tsc": "tsc --noEmit"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"author": "Kelley Sharp",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.7",
"@types/node": "^20.3.1",
"@types/uuid": "^9.0.2",
"nodemon": "^2.0.22",
"prisma": "^5.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"dependencies": {
"@graphql-yoga/plugin-disable-introspection": "^1.0.2",
"@pothos/core": "^3.30.0",
"@pothos/plugin-errors": "^3.11.1",
"@pothos/plugin-prisma": "^3.52.0",
"@pothos/plugin-simple-objects": "^3.7.0",
"@prisma/client": "^4.16.1",
"dotenv": "^16.3.1",
"eslint": "^8.43.0",
"express": "^4.18.2",
"express-session": "^1.17.3",
"generated": "link:@pothos/plugin-prisma/generated",
"graphql": "^16.7.1",
"graphql-scalars": "^1.22.2",
"graphql-yoga": "^4.0.2",
"tsconfig-paths": "^4.2.0",
"uuid": "^9.0.0"
}
}