-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.02 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
{
"name": "graphqlnode",
"version": "0.0.1-alpha-1",
"description": "A GraphQL API in Node JS",
"main": "server.js",
"scripts": {
"test": "mocha -- api/**/test/*.js",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mtotodev05/GraphqlApi.git"
},
"keywords": [
"node",
"graphql-node",
"api"
],
"author": "Kamau Brian",
"license": "MIT",
"bugs": {
"url": "https://github.com/mtotodev05/GraphqlApi/issues"
},
"homepage": "https://github.com/mtotodev05/GraphqlApi#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"express-graphql": "^0.7.1",
"graphql": "^14.0.2",
"jsonwebtoken": "^8.4.0",
"mongoose": "^5.3.15",
"morgan": "^1.9.1"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.2.0",
"expect": "^23.6.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.7",
"supertest": "^3.3.0"
}
}