-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.52 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "starmusiq-express",
"version": "1.0.0",
"engines": {
"node": "9.6.1",
"npm": "6.4.1"
},
"scripts": {
"client": "cd client && npm run start",
"server": "DEBUG=express:* nodemon ./index.js",
"dev": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client\"",
"start": "node ./index.js",
"heroku-postbuild": "cd client && npm install && npm install --only=dev --no-shrinkwrap && npm run build"
},
"dependencies": {
"@sentry/node": "^4.0.6",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"bluebird": "^3.5.2",
"body-parser": "^1.18.3",
"dotenv": "^6.0.0",
"express": "^4.16.2",
"lodash": "^4.17.10",
"moment": "^2.22.2",
"mongoose": "^5.2.10",
"raven": "^2.6.4",
"web-push": "^3.3.2"
},
"devDependencies": {
"concurrently": "^3.5.0"
},
"resolutions": {
"body-parser": "1.18.3",
"debug": "3.1.0",
"chalk": "2.4.1",
"js-tokens": "4.0.0",
"ansi-styles": "3.2.1",
"supports-color": "5.5.0",
"jsesc": "1.3.0",
"regenerator-runtime": "0.11.1",
"minimist": "1.2.0",
"depd": "1.1.2",
"http-errors": "1.6.3",
"iconv-lite": "0.4.23",
"qs": "6.5.2",
"raw-body": "2.3.3",
"setprototypeof": "1.1.0",
"statuses": "1.5.0",
"safe-buffer": "5.1.2",
"bson": "1.1.0",
"has-flag": "3.0.0"
}
}