-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 814 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 814 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": "graphql-nodejs",
"version": "1.0.0",
"description": "Graphql with nodejs",
"main": "index.js",
"scripts": {
"start": "node src/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/minkj1992/graphql-nodejs.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/minkj1992/graphql-nodejs/issues"
},
"homepage": "https://github.com/minkj1992/graphql-nodejs#readme",
"dependencies": {
"@prisma/client": "^2.18.0",
"apollo-server": "^2.21.0",
"bcryptjs": "^2.4.3",
"dotenv": "^8.2.0",
"graphql": "^15.5.0",
"jsonwebtoken": "^8.5.1"
},
"devDependencies": {
"@prisma/cli": "^2.18.0",
"prisma": "^2.18.0"
}
}