-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 946 Bytes
/
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
{
"name": "graphql-mongo-starter",
"version": "1.0.0",
"description": "A node project to get started with graphql using mongodb to get up and developing",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon index.js"
},
"keywords": [
"graphql",
"mongodb",
"getting-started",
"starter",
"hackathon",
"basic"
],
"repository": {
"type": "git",
"url": "https://github.com/mkamranhamid/graphql-mongo-starter"
},
"author": "Kamran Hamid <[email protected]>",
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.0",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"graphql": "^14.4.2",
"mongoose": "^5.7.5"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^6.2.0",
"nodemon": "^1.19.1"
},
"engines": {
"node": ">=10.7.0",
"npm": ">=6.5.0"
}
}