-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathpackage.json
40 lines (40 loc) · 1.16 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
{
"name": "bunkmanager",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"client-install": "npm install --prefix client",
"start": "node index.js",
"server": "env-cmd -f ./configs/dev.env nodemon index.js",
"client": "npm run start --prefix client",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"dev": "concurrently -n 'server,client' -c 'red,green' \"npm run server\" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"author": "",
"license": "ISC",
"devDependencies": {
"env-cmd": "^10.1.0",
"nodemon": "^2.0.6"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"chokidar": "^3.5.1",
"concurrently": "^5.3.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-mongo-sanitize": "^2.0.2",
"express-rate-limit": "^5.2.6",
"helmet": "^4.4.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.6.2",
"mongoose": "^5.10.11",
"node-cron": "^2.0.3",
"nodemailer": "^6.5.0",
"prettier": "^2.2.1",
"sharp": "^0.26.3",
"validator": "^13.1.17",
"xss-clean": "^0.1.1"
}
}