-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 827 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 827 Bytes
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
{
"name": "dockerstudy",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "node bin/www",
"dev": "nodemon bin/www",
"prd": "pm2 start bin/www",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"debug": "^2.6.3",
"koa": "^2.2.0",
"koa-bodyparser": "^3.2.0",
"koa-convert": "^1.2.0",
"koa-json": "^2.0.2",
"koa-logger": "^2.0.1",
"koa-onerror": "^1.2.1",
"koa-router": "^7.1.1",
"koa-static": "^3.0.0",
"koa-views": "^5.2.1",
"mongoose": "^5.8.1",
"pug": "^2.0.0-rc.1"
},
"devDependencies": {
"nodemon": "^1.8.1"
},
"description": "docker学习时,搭建的一个 node 项目,包括了 mongodb 连接,和 mongodb 基本的架构搭建",
"main": "app.js",
"author": "koala",
"license": "ISC"
}