-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
43 lines (43 loc) · 1018 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
{
"name": "blog",
"version": "0.5.13",
"private": true,
"scripts": {
"start": "node ./app.js",
"devStart": "nodemon ./app.js",
"migrate": "node common/migrate.js",
"build": "cd admin && npm run update",
"build2": "cd admin && npm run update2"
},
"dependencies": {
"axios": "^0.21.1",
"compression": "^1.7.4",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.5",
"debug": "~2.6.9",
"ejs": "^3.1.2",
"express": "~4.17.1",
"express-rate-limit": "^5.1.3",
"express-session": "^1.17.1",
"feed": "^4.2.2",
"http-errors": "~1.6.2",
"lru-cache": "^7.14.1",
"marked": ">=2.0.0",
"morgan": "~1.9.0",
"multer": "^1.4.2",
"mysql": "^2.18.1",
"sanitize-html": ">=2.3.2",
"sequelize": "^6.5.0",
"serve-static": "^1.14.1",
"sitemap": "^6.1.2",
"sqlite3": "^5.0.1",
"uuid": "^3.4.0"
},
"devDependencies": {
"nodemon": "^2.0.6",
"prettier": "^1.19.1"
},
"prettier": {
"singleQuote": true
}
}