-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 847 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 847 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
{
"scripts": {
"db:init": "node config/init-db.js",
"db:migrate": "npx sequelize-cli db:migrate",
"db:migrate:undo": "npx sequelize-cli db:migrate:undo",
"start": "node server.js",
"dev": "nodemon server.js"
},
"dependencies": {
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-session": "^1.18.1",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"mysql2": "^3.12.0",
"nodemailer": "^6.10.0",
"nodemon": "^3.1.9",
"pg": "^8.13.1",
"sequelize": "^6.37.5",
"uuid": "^11.0.5"
},
"name": "thrashandtreasureplatform",
"version": "1.0.0",
"main": "app.js",
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"sequelize-cli": "^6.6.2"
}
}