-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
36 lines (36 loc) · 1013 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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"client": "cd client && npm run start",
"server": "nodemon server/index.js",
"dev": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client\"",
"build": "cd client && npm run build",
"client:init": "cd client && npm i",
"start": "NODE_ENV=production node server/index.js",
"heroku-postbuild": "npm run client:init && npm run build"
},
"author": "",
"license": "ISC",
"dependencies": {
"@hapi/joi": "^15.1.0",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cookie-parser": "^1.4.4",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"express-fileupload": "^1.1.4",
"jsonwebtoken": "^8.5.1",
"pg": "^7.11.0",
"pg-format": "^1.0.4"
},
"devDependencies": {
"concurrently": "^4.1.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.3",
"nodemon": "^1.19.1"
}
}