-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.04 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
{
"name": "vidly-api",
"private": true,
"dependencies": {
"bcrypt": "^5.0.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"helmet": "^4.6.0",
"joi": "^17.4.2",
"jsonwebtoken": "^9.0.0",
"knex": "^0.95.11",
"moment": "^2.29.4",
"morgan": "^1.10.0",
"pg": "^8.7.1"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.5.2",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.2",
"jest": "^27.2.5",
"lint-staged": "^11.2.3",
"nodemon": "^2.0.13",
"prettier": "^2.4.1"
},
"scripts": {
"prepare": "husky install",
"postinstall": "node scripts/post-install.js",
"start": "node index.js",
"dev": "nodemon index.js",
"knex": "knex",
"lint": "eslint --fix --ignore-path .gitignore --cache .",
"test": "npm run lint"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}