-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 974 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 974 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
34
35
36
{
"name": "typescript-graphql",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev --no-notify --respawn --transpile-only src/server",
"start": "node dist/server",
"clean": "rm -rf dist",
"build": "npm -s run clean && npm -s run generate && tsc && npm run build:schema",
"build:schema": "ts-node src/schema/index.ts",
"generate": "npm -s run generate:prisma",
"generate:prisma": "prisma generate"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "all"
},
"dependencies": {
"@pothos/core": "4.3.0",
"@pothos/plugin-prisma": "4.3.1",
"@prisma/client": "5.22.0",
"graphql": "16.9.0",
"graphql-scalars": "1.23.0",
"graphql-yoga": "5.10.3"
},
"devDependencies": {
"@types/node": "22.10.0",
"prisma": "5.22.0",
"ts-node": "10.9.2",
"ts-node-dev": "2.0.0",
"typescript": "5.7.2"
},
"prisma": {
"seed": "ts-node --transpile-only prisma/seed.ts"
}
}