-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
28 lines (28 loc) · 882 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
{
"name": "project_dinnerbell",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"startServer": "cd server && nodemon server.js",
"startClient": "cd client && npm start",
"dev":
"concurrently --names \"server,client\" -c \"red,blue\" \"npm run startServer\" \"npm run startClient\"",
"start": "node ./server/server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "cd client && npm run build && cd .. && cp -r client/build server/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EdTriplett/project_dinnerbell.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/EdTriplett/project_dinnerbell/issues"
},
"homepage": "https://github.com/EdTriplett/project_dinnerbell#readme",
"dependencies": {
"concurrently": "^3.5.0"
}
}