-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 995 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 995 Bytes
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
{
"name": "pets-api",
"version": "1.0.0",
"description": "Starwars API Playground: Node, Typescript, GraphQL, Prisma",
"main": "index.js",
"scripts": {
"codegen": "graphql-codegen --config codegen.ts",
"db:generate-client": "npx prisma generate",
"db:studio": "npx prisma studio",
"start:build": "npx tsc",
"start:prod": "node dist/index.js",
"start:dev": "nodemon --watch src --exec ts-node src/index.ts"
},
"dependencies": {
"@apollo/server": "^4.10.0",
"@prisma/client": "^5.9.1",
"express": "4.18.2",
"graphql": "^16.6.0",
"prisma": "^5.9.1"
},
"devDependencies": {
"@graphql-codegen/cli": "5.0.2",
"@graphql-codegen/introspection": "4.0.2",
"@graphql-codegen/typescript": "4.0.4",
"@graphql-codegen/typescript-resolvers": "4.0.4",
"@types/express": "^4.17.17",
"@types/graphql": "^14.5.0",
"@types/node": "^20.4.2",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}