-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 738 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 738 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
{
"name": "inputs-simple",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"generate": "prisma generate",
"generate-debug": "npx cross-env DEBUG=* prisma generate",
"migrate": "prisma migrate dev",
"type": "tsc --noEmit",
"dev": "nodemon",
"build": "tsup ./src/server.ts",
"start": "node dist/server.js",
"tscheck": "tsc --noEmit"
},
"dependencies": {
"@pothos/core": "^4.0.2",
"@pothos/plugin-prisma": "^4.0.3",
"@prisma/client": "5.17.0",
"apollo-server": "^3.13.0",
"graphql": "^16.8.1"
},
"devDependencies": {
"nodemon": "^3.1.0",
"prisma": "^5.17.0",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.5.3"
}
}