-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 970 Bytes
/
package.json
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": "mvc-webapp",
"version": "2.0.0",
"description": "A simple framework for MVC web applications and RESTful APIs.",
"main": "index.js",
"scripts": {
"test": "xo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RobertoMachorro/mvc-webapp.git"
},
"keywords": [
"framework",
"mvc",
"express",
"express5",
"webapp"
],
"author": "Roberto Machorro",
"license": "MIT",
"bugs": {
"url": "https://github.com/RobertoMachorro/mvc-webapp/issues"
},
"homepage": "https://github.com/RobertoMachorro/mvc-webapp#readme",
"devDependencies": {
"xo": "^0.44.0"
},
"xo": {
"semicolon": false,
"rules": {
"comma-dangle": 0,
"unicorn/prefer-module": 0
}
},
"dependencies": {
"connect-redis": "^7.1.1",
"debug": "^4.3.7",
"ejs": "^3.1.10",
"express": "^5.0.0",
"express-session": "^1.18.0",
"morgan": "^1.10.0",
"redis": "^4.7.0"
}
}