forked from lfb/nodejs-koa-blog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.71 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "nodejs-koa2-blog",
"version": "1.0.0",
"description": "基于 Node.js Koa2 实战开发的一套完整的博客项目网站,使用 Koa2 二次开发一套适合多端的 RESTful API,同时配套完整的后台管理系统,且前端展示既有基于 ejs 服务端渲染,也有基于 Vue.js 前后端分离的 2 套前端网站。",
"main": "index.js",
"scripts": {
"dev": "nodemon app.js",
"test": "jest _tests --forceExit --runInBand --colors"
},
"repository": {
"type": "git",
"url": "git+https://github.com/liangfengbo/nodejs-koa2-blog.git"
},
"keywords": [
"nodejs",
"koa2",
"sequelize",
"mysql",
"ejs",
"vuejs",
"JavaScript",
"博客网站",
"Node.js实战",
"ejs 服务端渲染"
],
"author": "Fengbo Liang, https://github.com/liangfengbo",
"license": "ISC",
"bugs": {
"url": "https://github.com/liangfengbo/nodejs-koa2-blog/issues"
},
"homepage": "https://github.com/liangfengbo/nodejs-koa2-blog#readme",
"dependencies": {
"@koa/cors": "^3.0.0",
"axios": "^0.19.0",
"basic-auth": "^2.0.1",
"bcryptjs": "^2.4.3",
"ejs": "^2.7.4",
"hashids": "^2.1.0",
"highlight.js": "^9.16.2",
"jest": "^24.9.0",
"jsonwebtoken": "^8.4.0",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-router": "^7.4.0",
"koa-static": "^5.0.0",
"koa-views": "^6.2.1",
"lodash": "^4.17.11",
"marked": "^0.7.0",
"moment": "^2.24.0",
"mysql2": "^1.6.5",
"npm-check": "^5.9.0",
"redis": "^2.8.0",
"require-directory": "^2.1.1",
"sequelize": "^5.21.2",
"supertest": "^4.0.2",
"validator": "^10.11.0",
"xss": "^1.0.6"
},
"directories": {
"test": "_tests"
}
}