-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 820 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 820 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
{
"name": "invoicebuilder",
"version": "0.0.0",
"private": true,
"license": "MIT",
"scripts": {
"database-init": "npx sequelize-cli db:migrate && npx sequelize-cli db:seed:all",
"dev": "nodemon ./bin/www",
"start": "node ./bin/www"
},
"dependencies": {
"bcryptjs": "^3.0.2",
"connect-session-sequelize": "^7.1.7",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "^16.5.0",
"ejs": "~2.6.1",
"express": "~4.16.1",
"express-session": "^1.18.1",
"express-validator": "^7.2.1",
"helmet": "^8.1.0",
"http-errors": "~1.6.3",
"multer": "^1.4.5-lts.2",
"mysql2": "^3.14.1",
"node-cron": "^4.0.5",
"sequelize": "^6.37.7"
},
"devDependencies": {
"morgan": "^1.10.0",
"nodemon": "^3.1.10",
"sequelize-cli": "^6.6.3"
}
}