-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 883 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
{
"name": "graphql_ecommerce_api",
"version": "1.0.0",
"description": "This is a sample GraphQL API for an ecommerce application. Designed and developed by Himadri Ganguly.",
"main": "server.js",
"homepage": "",
"repository": {
"type": "git",
"url": ""
},
"license": "GPL-3.0",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon ./src/server/server.js"
},
"author": "Himadri Ganguly",
"dependencies": {
"apollo-errors": "^1.4.0",
"async": "^2.4.1",
"bluebird": "^3.5.0",
"body-parser": "^1.17.2",
"crypto-js": "^3.1.9-1",
"express": "^4.15.3",
"express-jwt": "^5.3.0",
"graphql": "^0.10.1",
"graphql-server-express": "^0.8.5",
"graphql-tools": "^1.0.0",
"lodash": "^4.17.4",
"mongoose": "^5.7.11",
"nodemon": "^1.19.4",
"object-assign": "^4.1.1"
}
}