-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1011 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
{
"name": "GraphQLMongoDB",
"version": "1.0.0",
"description": "This repository shows how GraphQL can be used in tandem with MongoDB",
"main": "index.js",
"scripts": {
"start": "nodemon --exec babel-node src/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andreidimaano/GraphQLMongoDB.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/andreidimaano/GraphQLMongoDB/issues"
},
"homepage": "https://github.com/andreidimaano/GraphQLMongoDB#readme",
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/node": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"babel-jest": "^26.6.3",
"nodemon": "^2.0.6",
"regenerator-runtime": "^0.13.7"
},
"dependencies": {
"apollo-server-express": "^2.19.1",
"express": "^4.17.1",
"graphql": "^15.4.0",
"mongoose": "^5.11.10"
}
}