-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 1.08 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
{
"name": "elm-seller-server",
"version": "1.0.0",
"description": "koa+mongodb搭建的外卖商家服务端应用",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon app.js",
"dev:debug": "nodemon --inspect app.js",
"start": "pm2 start --env production",
"stop": "pm2 stop elm-seller-server",
"restart": "pm2 restart elm-seller-server",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"keywords": ["koa","node","mongoose","restful"],
"author": "konglingwen",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.0",
"jsonwebtoken": "^8.5.1",
"koa": "^2.13.0",
"koa-bodyparser": "^4.3.0",
"koa-compress": "^5.0.1",
"koa-mount": "github:koajs/mount",
"koa-multer": "^1.0.2",
"koa-parameter": "^3.0.1",
"koa-router": "^9.4.0",
"koa-static": "^5.0.0",
"koa2-connect-history-api-fallback": "^0.1.3",
"mongoose": "^5.10.7"
},
"devDependencies": {
"cross-env": "^7.0.2",
"nodemon": "^2.0.4",
"vuepress": "^1.7.1"
}
}