-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.26 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
46
{
"homepage": "https://protected-beyond-74373.herokuapp.com/",
"name": "cage-ims",
"version": "0.1.0",
"dependencies": {
"@sendgrid/mail": "^7.2.6",
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"concurrently": "^5.3.0",
"crypto": "^1.0.1",
"express": "^4.17.1",
"file-saver": "^2.0.2",
"husky": "^4.2.5",
"is-empty": "^1.2.0",
"jsonwebtoken": "^8.5.1",
"lint-staged": "^10.2.11",
"mongoose": "^5.10.6",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"prettier": "^2.0.5",
"validator": "^13.7.0"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"scripts": {
"start": "node server.js",
"server": "nodemon server.js",
"build": "cd client && npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"eject": "react-scripts eject",
"install-client": "cd client && npm install",
"client": "cd client && npm start",
"dev": "concurrently -n 'server,client' -c 'red,green' \"nodemon server.js\" \"npm run client\"",
"heroku-postbuild": "npm run install-client && npm run build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}