-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 846 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 846 Bytes
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
{
"name": "graphql-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "NODE_ENV='production' node server/index.js",
"start:dev": "NODE_ENV='development' concurrently 'node server/index.js' 'cd client && npm start'",
"build:react": "cd client && npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"node": "8.9.0",
"npm": "5.5.1"
},
"keywords": [],
"author": "Aaron Griffiths",
"license": "ISC",
"dependencies": {
"apollo-server-express": "^1.3.2",
"body-parser": "^1.18.2",
"concurrently": "^3.6.0",
"cors": "^2.8.4",
"dataloader": "^1.3.0",
"express": "^4.16.2",
"firebase": "^4.9.0",
"graphql": "^0.12.3",
"graphql-tools": "^2.19.0",
"node-fetch": "^1.7.3",
"pg": "^7.4.1"
}
}