-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.01 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.01 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
{
"type": "module",
"name": "deventblog",
"version": "1.0.0",
"description": "DeVent Blog",
"main": "app.js",
"scripts": {
"test": "mocha",
"start": "node app.js",
"forever": "forever app.js",
"start:prod": "NODE_ENV=prod forever app.js",
"start:dev": "NODE_ENV=dev forever app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DipokalLab/devent-blog.git"
},
"author": "dipokalhhj",
"license": "ISC",
"bugs": {
"url": "https://github.com/DipokalLab/frame1/issues"
},
"homepage": "https://github.com/DipokalLab/frame1#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"body-parser": "^1.19.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dayjs": "^1.10.7",
"dotenv": "^16.0.0",
"express": "^4.17.2",
"express-handlebars": "^6.0.2",
"forever": "^4.0.3",
"helmet": "^5.0.2",
"jsonwebtoken": "^8.5.1",
"mysql2": "^2.3.3",
"sanitize-html": "^2.6.1"
},
"devDependencies": {
"mocha": "^9.2.0"
}
}