-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1018 Bytes
/
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
{
"name": "movie_db_api",
"version": "0.1.0-alpha",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "nodemon index.js",
"format": "prettier --write .",
"prepare": "husky install",
"lint": "eslint --ext .js,.ts,.json --fix",
"test": "jest --watchAll --verbose"
},
"dependencies": {
"axios": "0.26.0",
"bcrypt": "5.0.1",
"cors": "2.8.5",
"dotenv": "16.0.0",
"express": "4.17.2",
"jsonwebtoken": "8.5.1",
"mysql2": "2.3.3",
"sequelize": "6.16.1"
},
"devDependencies": {
"@types/jest": "27.5.1",
"eslint": "8.15.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-jest": "26.2.2",
"eslint-plugin-prettier": "4.0.0",
"husky": "8.0.1",
"jest": "28.1.0",
"lint-staged": "12.4.1",
"nodemon": "2.0.15",
"prettier": "2.6.2",
"sequelize-cli": "6.4.1",
"supertest": "6.2.3"
}
}