-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.63 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
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "5sherpas-backend",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:prod": "node server.js",
"start:dev": "concurrently \"nodemon --ignore 'client/*'\" \"npm run client\"",
"client": "cd client && npm run start",
"seed": "node dbSeed/*.js",
"format": "prettier \"./**/*.{js,html}\" --write && cd client && npm run format",
"lint": "eslint \"./**/*.js\" --quiet && cd client && npm run lint",
"install": "cd client && npm install",
"precommit": "lint-staged",
"fix-all": "npm run lint && npm run format",
"build": "cd client && npm run build",
"heroku-postbuild": "npm run build"
},
"lint-staged": {
"**/*.{js, md, css, jsx, json, html}": [
"eslint --quiet",
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit",
"commit-msg": "echo $HUSKY_GIT_PARAMS"
}
},
"author": "",
"license": "MIT",
"devDependencies": {
"concurrently": "^4.1.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.13.0",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"nodemon": "^1.18.7",
"prettier": "^2.1.2"
},
"dependencies": {
"axios": "^0.18.1",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"d3": "^6.2.0",
"dotenv": "^8.2.0",
"express": "^4.16.3",
"express-session": "^1.17.1",
"if-env": "^1.0.4",
"mongoose": "^5.3.16",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"validator": "^13.1.17"
}
}