-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 945 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 945 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
{
"name": "dating-app",
"version": "1.0.0",
"description": "Certi is an MVC dating app",
"main": "index.js",
"scripts": {
"dev": "nodemon src/index.js",
"seed": "node src/seeds/index.js",
"start": "npm run seed && node src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fudge88/dating-app.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fudge88/dating-app/issues"
},
"homepage": "https://github.com/fudge88/dating-app#readme",
"devDependencies": {
"nodemon": "^2.0.15"
},
"dependencies": {
"bcrypt": "^5.0.1",
"connect-session-sequelize": "^7.1.2",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"express-handlebars": "^6.0.2",
"express-session": "^1.17.2",
"handlebars": "^4.7.7",
"moment": "^2.29.1",
"mysql2": "^2.3.3",
"save": "^2.4.0",
"sequelize": "^6.12.0"
}
}