-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1008 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
{
"name": "structured-collaboration-server",
"version": "0.0.1",
"description": "API server for structured-collaboration tool",
"main": "src/server.js",
"scripts": {
"preinstall": "cd client && npm install",
"client": "cd client && npm start",
"server": "node src/server.js",
"start": "if [ \"$NODE_ENV\" = \"production\" ]; then npm run start:prod; else npm run start:dev; fi",
"start:dev": "concurrently \"npm run server\" \"npm run client\"",
"start:prod": "NODE_ENV=production \"npm run server\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/gap777/structured-collaboration.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/gap777/structured-collaboration/issues"
},
"homepage": "https://github.com/gap777/structured-collaboration#readme",
"dependencies": {
"express": "^4.16.3",
"mongoose": "^5.0.14",
"ws": "^5.1.1"
},
"devDependencies": {
"concurrently": "^3.5.1"
}
}