-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·45 lines (45 loc) · 1.18 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
{
"name": "parc_mongo",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "node app.js",
"server:debug": "nodemon --inspect app.js",
"server": "nodemon app.js",
"frontend-install": "npm install --prefix frontend",
"frontend": "npm start --prefix frontend",
"dev": "concurrently \"npm run server\" \"npm run frontend\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=true npm install --prefix frontend && npm run build --prefix frontend"
},
"author": "",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.419.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"concurrently": "^4.1.0",
"express": "^4.16.4",
"jsonwebtoken": "^8.5.0",
"moment": "^2.24.0",
"mongoose": "^5.4.18",
"multer": "^1.4.1",
"multer-s3": "^2.9.0",
"node-sass": "^4.11.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"react": "^16.8.5",
"react-dates": "^20.1.0",
"react-dom": "^16.8.5",
"redux-logger": "^3.0.6",
"validator": "^10.11.0",
"webpack": "4.28.3"
},
"devDependencies": {
"nodemon": "^1.19.1"
},
"engines": {
"node": "10.13.0",
"npm": "6.8.0"
}
}