-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.29 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.29 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "minis-nodejs",
"version": "1.0.0",
"description": "A minimalist social network made with Node.js and SQLite",
"main": "app.js",
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"test": "jest",
"migrate": "sequelize-cli db:migrate",
"seed": "sequelize-cli db:seed:all",
"setup": "npm install && sequelize-cli db:migrate && sequelize-cli db:seed:all"
},
"keywords": [
"social-network",
"nodejs",
"express",
"sqlite",
"mariadb",
"minimal"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"bcrypt": "^5.1.1",
"bcryptjs": "^3.0.2",
"body-parser": "^1.20.2",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.6",
"dotenv": "^16.6.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-rate-limit": "^6.11.2",
"express-session": "^1.17.3",
"express-validator": "^7.2.1",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"mysql2": "^3.14.3",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"sequelize": "^6.37.7",
"sqlite3": "^5.1.6",
"validator": "^13.9.0"
},
"devDependencies": {
"jest": "^29.5.0",
"nodemon": "^3.1.10",
"sequelize-cli": "^6.6.0",
"supertest": "^6.3.3"
},
"engines": {
"node": ">=16.0.0"
}
}