-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
39 lines (39 loc) · 1.07 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
{
"name": "yes",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"cross-env": "^5.1.4",
"jsonwebtoken": "^8.2.1",
"kcors": "^2.2.1",
"koa": "^2.5.0",
"koa-body": "^2.5.0",
"koa-helmet": "^4.0.0",
"koa-json": "^2.0.2",
"koa-limit": "^1.0.2",
"koa-logger": "^3.2.0",
"koa-router": "^7.4.0",
"koa-static": "^4.0.2",
"mongoose": "^5.0.16",
"pm2": "^2.10.4"
},
"devDependencies": {
"mocha": "^5.2.0",
"supervisor": "^0.12.0"
},
"scripts": {
"dev": "cross-env NODE_ENV=development supervisor --harmony ./server/index.js",
"start": "cross-env NODE_ENV=production pm2 start ./server/index.js --node-args='--harmony' --name 'koa-mongoDB --port 12345'",
"stop": "cross-env NODE_ENV=production pm2 stop ./server/index.js --name 'koa-mongoDB --port 12345'",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/HerryLo/koa-mongoDB.git"
},
"author": "",
"license": "ISC"
}