-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1001 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
{
"name": "xpresson",
"version": "2.0.0",
"description": "Blogging matters.",
"type": "module",
"exports": "./app.js",
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/msrumon/xpresson.git"
},
"keywords": [
"xpresson",
"blogging"
],
"author": "Rumon <contact@msrumon.com> (https://www.msrumon.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/msrumon/xpresson/issues"
},
"homepage": "https://github.com/msrumon/xpresson#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"connect-flash": "^0.1.1",
"connect-session-sequelize": "^7.1.7",
"csurf": "^1.11.0",
"express": "^4.18.2",
"express-session": "^1.17.3",
"express-validator": "^7.0.1",
"helmet": "^7.0.0",
"pug": "^3.0.2",
"sequelize": "^6.32.1",
"sqlite3": "^5.1.6"
},
"devDependencies": {
"nodemon": "^3.0.1"
}
}