-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1006 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 1006 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
33
34
35
36
{
"name": "graphql_server_starter",
"version": "1.0.0",
"description": "The server side of a full stack starter kit.",
"main": "index.js",
"scripts": {
"server": "source .env; nodemon --exec babel-node index.js || true",
"client": "cd client && yarn start",
"dev": "concurrently --kill-others-on-fail \"yarn server\" \"yarn client\""
},
"keywords": [],
"author": "Patrick Kelly",
"license": "MIT",
"dependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"apollo-boost": "^0.1.22",
"body-parser": "^1.18.3",
"concurrently": "^4.1.0",
"cors": "^2.8.5",
"dotenv": "^6.1.0",
"express": "^4.16.4",
"express-graphql": "^0.7.1",
"graphql": "^14.0.2",
"graphql-tag": "^2.10.0",
"graphql-tools": "^4.0.3",
"merge-graphql-schemas": "^1.5.8",
"mongoose": "^5.3.14",
"nodemon": "^1.18.7",
"react-apollo": "^2.3.2"
},
"devDependencies": {
"@babel/node": "^7.0.0"
}
}