-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 929 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
33
34
35
{
"name": "bughaus",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "concurrently \"npm run server\" \"npm run client\"",
"server": "nodemon -r @std/esm server.js",
"client": "node start-client.js",
"concurrently": "concurrently",
"heroku-postbuild": "cd client/ && npm install && npm install --only=dev --no-shrinkwrap && npm run build",
"test": "cd client/ && npm test"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@std/esm": "^0.24.0",
"chai": "^4.1.2",
"concurrently": "^3.5.1",
"mocha": "^4.0.1"
},
"dependencies": {
"assert": "^1.4.1",
"body-parser": "^1.18.2",
"connect-mongo": "^2.0.1",
"express": "^4.16.2",
"express-session": "^1.15.6",
"lodash": "^4.17.4",
"mongodb": "^3.0.1",
"nodemon": "^1.14.11",
"path": "^0.12.7",
"socket.io": "^2.0.4"
},
"@std/esm": "cjs"
}