-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.19 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.19 KB
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
37
38
39
40
41
42
43
{
"name": "web",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "babel-node ./server/app.js",
"dev": "npm run watch && nodemon --watch dist",
"build": "babel server -d dist --ignore server/tests --copy-files",
"serve": "node ./dist/app.js",
"watch": "babel -w server -d dist --ignore server/tests --copy-files",
"clean": "rm -rf dist",
"heroku-postbuild": "cd client && npm install && npm run build"
},
"dependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"bluebird": "^3.5.1",
"body-parser": "^1.18.3",
"cookie-parser": "~1.4.3",
"cors": "^2.8.4",
"debug": "~2.6.9",
"express": "~4.16.0",
"express-ws": "^4.0.0",
"gridfs-stream": "^1.1.1",
"http-errors": "~1.6.2",
"md5": "^2.2.1",
"method-override": "^3.0.0",
"mongodb": "^3.1.1",
"mongoose": "^5.4.20",
"mongoose-gridfs": "^0.4.1",
"mongoose-id-validator": "^0.4.3",
"morgan": "^1.9.1",
"multer": "^1.3.1",
"multer-gridfs-storage": "^3.0.1",
"socket.io": "^2.1.1"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/node": "^7.2.2",
"cross-env": "^5.2.0",
"nodemon": "^1.17.5"
}
}