-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 996 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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "cd client && npm run build",
"install-client": "cd client && npm install --force",
"heroku-postbuild": "npm run install-client && npm run build",
"start": "node app.js",
"server": "nodemon app.js",
"client": "npm run start --prefix client",
"dev": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client\""
},
"author": "",
"license": "ISC",
"dependencies": {
"archiver": "^5.3.1",
"aws-sdk": "^2.1148.0",
"bcrypt": "^5.0.1",
"concurrently": "^7.2.0",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"ejs": "^3.1.8",
"express": "^4.18.1",
"fs": "^0.0.1-security",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.6.0",
"mongoose": "^6.3.3",
"morgan": "^1.10.0",
"multer": "^1.4.4-lts.1",
"multer-s3": "^2.0.1",
"nodemon": "^2.0.16",
"pdfkit": "^0.13.0",
"uuid": "^8.3.2"
}
}