-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 889 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
{
"name": "boomtown-server",
"version": "1.0.0",
"description": "A server for the boomtown app.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "NODE_ENV='development' nodemon --inspect index.js --exec babel-node"
},
"repository": {
"type": "git",
"url": "tbd"
},
"author": "Jessica Dieuique",
"license": "ISC",
"dependencies": {
"body-parser": "^1.17.2",
"cors": "^2.8.4",
"dataloader": "^1.3.0",
"dotenv": "^4.0.0",
"express": "^4.15.3",
"firebase-admin": "^5.1.0",
"graphql": "^0.10.5",
"graphql-server-express": "^1.0.2",
"graphql-tools": "^1.1.0",
"node-fetch": "^1.7.1",
"pg": "^7.0.2"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"nodemon": "^1.11.0"
}
}