-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1016 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 1016 Bytes
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
{
"name": "final-project",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "nodemon ./bin/www",
"migrate": "npx sequelize-cli db:migrate",
"migrate:undo": "npx sequelize-cli db:migrate:undo",
"seed": "npx sequelize-cli db:seed:all",
"seed:undo": "npx sequelize-cli db:seed:undo",
"test": ""
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"bcrypt": "^5.1.1",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^16.3.1",
"express": "~4.16.1",
"google-maps": "^4.3.3",
"husky": "^8.0.3",
"jsonwebtoken": "^9.0.2",
"morgan": "~1.9.1",
"mysql": "^2.18.1",
"mysql2": "^3.6.5",
"nodemon": "^3.0.1",
"prettier": "^3.1.0",
"pretty-quick": "^3.1.3",
"sequelize": "^6.35.1",
"sequelize-bcrypt": "^1.2.0",
"use-places-autocomplete": "^4.0.1",
"vite": "^5.0.4"
},
"devDependencies": {
"sequelize-cli": "^6.6.2"
}
}