-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
29 lines (29 loc) · 912 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
{
"name": "mern-graphql-apollo-boilerplate",
"version": "1.0.1",
"description": "",
"main": "index.js",
"scripts": {
"client-install": "npm install --prefix client",
"server-install": "npm install --prefix server",
"node-server": "node --prefix server/server.js",
"server": "npm start --prefix server",
"client": "npm start --prefix client",
"start": "concurrently \"npm run server\" \"npm run client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/klendi/mern-apollo-graphql-boilerplate.git"
},
"author": "Klendi Gocci",
"license": "MIT",
"bugs": {
"url": "https://github.com/klendi/mern-apollo-graphql-boilerplate/issues"
},
"homepage": "https://github.com/klendi/mern-apollo-graphql-boilerplate#readme",
"dependencies": {
"apollo-server-express": "^2.0.4",
"concurrently": "^3.6.1",
"graphql-tag": "^2.9.2"
}
}