-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.03 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
{
"name": "my_blog",
"version": "1.0.0",
"description": "use koa2 build a blog system",
"main": "app.js",
"directories": {
"doc": "docs",
"test": "test"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha",
"dev": "set NODE_ENV=production && nodemon bin/www.js",
"start": "set NODE_ENV=production && pm2 start bin/www.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SuperLin10/my_blog.git"
},
"keywords": [
"koa2",
"blog"
],
"author": "SuperLin10",
"license": "ISC",
"bugs": {
"url": "https://github.com/SuperLin10/my_blog/issues"
},
"homepage": "https://github.com/SuperLin10/my_blog#readme",
"dependencies": {
"koa": "^2.5.1",
"koa-bodyparser": "^2.0.1",
"koa-json": "^1.1.1",
"koa-logger": "^1.3.0",
"koa-onerror": "^1.2.1",
"koa-router": "^7.0.0",
"koa-static": "^2.0.0",
"koa-views": "^5.0.1",
"log4js": "^2.5.3"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.1.2",
"nodemon": "^1.8.1"
}
}