-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 847 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 847 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
{
"name": "koa-sequelize",
"version": "1.0.0",
"description": "Koa basic server boilerplate example",
"main": "index.js",
"scripts": {
"dev": "sudo pm2 start ./config/app.json --only koaSequelize-development --env development",
"prod": "pm2 start ./config/app.json --only koaSequelize-production --env production",
"doc": "jsdoc -c ./config/jsdoc.json"
},
"keywords": [
"koa2",
"async",
"await",
"sequelize"
],
"author": "MDSLab",
"license": "MIT",
"dependencies": {
"bcrypt-node": "^0.1.0",
"dotenv": "^8.2.0",
"http2": "^3.3.6",
"jws": "^4.0.0",
"koa": "^2.11.0",
"koa-body": "^4.1.1",
"koa-pino-logger": "^2.1.3",
"koa-router": "^8.0.8",
"sequelize": "^5.21.5"
},
"devDependencies": {
"jsdoc": "^3.4.3",
"jsdoc-strip-async-await": "^0.1.0"
}
}