-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.23 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.23 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
{
"name": "emarketplace",
"version": "0.7.5",
"description": "An ecommerce application using Express, Handlebars view engine, MySQL and sequelize ORM.",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"dev": "nodemon server.js"
},
"engines": {
"node": ">=12.13.0",
"yarn": ">=1.19.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/letscook1/project2.git"
},
"keywords": [],
"author": "Vincent Shury",
"contributors": [
"Mike Gullo",
"Michelle Williams"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/letscook1/project2/issues"
},
"homepage": "https://github.com/letscook1/project2#readme",
"dependencies": {
"bcrypt": "^3.0.7",
"connect-session-sequelize": "^6.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-handlebars": "^3.1.0",
"express-session": "^1.17.0",
"mysql2": "^2.0.1",
"passport": "^0.4.0",
"sequelize": "^5.21.2"
},
"devDependencies": {
"nodemon": "^2.0.1",
"standard": "^14.3.1"
}
}