-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.14 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
{
"name": "Backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "DEBUG=app:* nodemon src/index.js",
"start": "NODE_ENV=production node src/index.js",
"test": "mocha ./tests --timeout 100000"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@hapi/boom": "^9.1.0",
"axios": "^0.20.0",
"bcrypt": "^5.0.0",
"cors": "^2.8.5",
"crypto-js": "^4.0.0",
"dayjs": "^1.9.4",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^4.1.1",
"joi": "^17.2.1",
"jsonwebtoken": "^8.5.1",
"mailgun-js": "^0.22.0",
"mongoose": "^5.10.9",
"mongoose-paginate-v2": "^1.3.9"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"mocha": "^8.2.0",
"morgan": "^1.10.0",
"nodemon": "^2.0.4",
"prettier": "^2.1.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}