-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 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
{
"name": "ts-graphql-template",
"version": "1.0.0",
"description": "personal graphql template server in ts",
"main": "index.js",
"scripts": {
"dev": "nodemon",
"build": "rimraf ./build && tsc",
"start": "npm run build && node build/index.js",
"migrate": "npx prisma migrate dev",
"generate": "graphql-codegen",
"studio": "npx prisma studio"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IhsenBen/ts-graphql-template.git"
},
"author": "Ihsen Ben Ali",
"license": "MIT",
"bugs": {
"url": "https://github.com/IhsenBen/ts-graphql-template/issues"
},
"homepage": "https://github.com/IhsenBen/ts-graphql-template#readme",
"prisma": {
"schema": "src/prisma/schema.prisma"
},
"devDependencies": {
"@graphql-codegen/add": "^4.0.1",
"@graphql-codegen/graphql-modules-preset": "^3.1.1",
"@graphql-codegen/typescript-resolvers": "^3.1.1",
"@types/cors": "^2.8.13",
"@types/node": "^18.15.7",
"nodemon": "^2.0.22",
"prisma": "^4.11.0",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
},
"dependencies": {
"@apollo/server": "^4.5.0",
"@graphql-codegen/cli": "^3.2.2",
"@graphql-codegen/typescript": "^3.0.2",
"@prisma/client": "^4.11.0",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"express": "^4.18.2",
"graphql": "^16.6.0",
"graphql-modules": "^2.1.2",
"graphql-tag": "^2.12.6",
"bcryptjs": "^2.4.3"
}
}