-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 819 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 819 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
{
"name": "node-express-mysql-boilerplate",
"version": "1.0.0",
"description": "A boilerplate for Node.js web applications with express and MySQL",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon index.js",
"postinstall": "cp .env-example .env"
},
"author": "Mangesh Ghadigaonkar",
"license": "ISC",
"devDependencies": {
"nodemon": "^3.1.7"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"connect-session-sequelize": "^7.1.7",
"csurf": "^1.10.0",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-flash": "0.0.2",
"express-handlebars": "^8.0.1",
"express-session": "^1.18.1",
"mysql2": "^3.11.3",
"sequelize": "^6.37.5",
"validator": "^13.12.0"
}
}