-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
39 lines (39 loc) · 916 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
36
37
38
39
{
"name": "remo-platform-server",
"version": "0.1.0",
"private": true,
"dependencies": {
"@sendgrid/mail": "^6.4.0",
"aws-sdk": "^2.683.0",
"axios": "^0.19.0",
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"concurrently": "^4.1.0",
"cors": "^2.8.5",
"express": "^4.16.4",
"express-jwt": "^5.3.1",
"joi": "^14.3.1",
"metaphone": "^1.0.5",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"nodemon": "^1.18.11",
"passport": "^0.4.0",
"patreon": "^0.4.1",
"pg": "^7.10.0",
"query-string": "^6.9.0",
"url": "^0.11.0",
"winston": "^3.2.1",
"ws": "^7.0.1"
},
"scripts": {
"start": "concurrently 'npm run server'",
"sockets": "nodemon src/services/sockets/sockets.js",
"server": "nodemon src/services/server/server.js"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}