-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.3 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.3 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
{
"name": "pc_mvc_techblog",
"version": "1.0.0",
"description": "Writing about tech can be just as important as making it. Developers spend plenty of time creating new applications and debugging existing codebases, but most developers also spend at least some of their time reading and writing about technical concepts, recent advancements, and new technologies. A simple Google search for any concept covered in this course returns thousands of think pieces and tutorials from developers of all skill levels!",
"main": "server.js",
"scripts": {
"start": "node server.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pciongoli/PC-MVC-TechBlog.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/pciongoli/PC-MVC-TechBlog/issues"
},
"homepage": "https://github.com/pciongoli/PC-MVC-TechBlog#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"connect-session-sequelize": "^7.1.3",
"dotenv": "^16.0.1",
"express": "^4.17.3",
"express-handlebars": "^6.0.3",
"express-session": "^1.17.2",
"mysql2": "^2.3.3",
"sequelize": "^6.17.0"
},
"engines": {
"node": "16.x"
},
"devDependencies": {
"jest": "^27.5.1"
}
}