-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 854 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 854 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
33
34
35
36
37
{
"name": "api-koa",
"version": "1.0.0",
"description": "Api REST Application in ES7 style",
"license": "MIT",
"author": {
"name": "Mauricie T"
},
"directories": {
"lib": "./app/controllers",
"test": "./test"
},
"dependencies": {
"koa": ">=2.2.x",
"koa-body": ">=2.0.0",
"koa-newrelic": "^2.0.3",
"koa-pino-logger": "^2.1.3",
"koa-router": ">=7.x.x",
"koa-send": "^4.1.0",
"koa-static": "^4.0.1",
"koa2-cors": "^2.0.5",
"node-fetch": "^1.7.3",
"parameter": "^2.2.0",
"pg": "^7.1.2"
},
"devDependencies": {
"mocha": "^6.2.2"
},
"scripts": {
"watch": "pm2 start server.js --watch --node-args='--max-old-space-size=128' ",
"start": "pm2 start ecosystem.yml --env development",
"test": "mocha test --timeout 6s"
},
"engines": {
"node": ">=7.6.x"
}
}