forked from xiadd/juhe.im
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 915 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
{
"name": "juhe.im",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon -r dotenv/config -r esm server.js dotenv_config_path=.env.development",
"start": "node -r dotenv/config -r esm server.js dotenv_config_path=.env.production",
"doc:dev": "vuepress dev _docs",
"doc:build": "vuepress build _docs"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@koa/cors": "2",
"axios": "^0.18.0",
"config": "^1.30.0",
"debug": "^3.1.0",
"dotenv": "^5.0.1",
"esm": "^3.0.30",
"koa": "^2.5.1",
"koa-bodyparser": "^4.2.0",
"koa-morgan": "^1.0.1",
"koa-mount": "^3.0.0",
"koa-router": "^7.4.0",
"koa-static": "^4.0.2",
"koa-views": "^6.1.4",
"nunjucks": "^3.1.2"
},
"devDependencies": {
"nodemon": "^1.17.4"
}
}