-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.03 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "koa-swagger-api-template",
"version": "1.0.0-0",
"description": "Koa swagger api template",
"main": "index.js",
"author": "Augustin Godiscal <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"build": "babel src -d lib",
"dev": "NODE_TLS_REJECT_UNAUTHORIZED=0 DEBUG=koa-mount babel-watch server.js",
"start": "node ./lib/server.js",
"run-all-tests": "npm-run-all test:*",
"test": "npm run test:lint src && npm run test:deps",
"test:lint": "standard src",
"test:deps": "dependency-check --verbose --missing ./lib/**/*.js --no-dev --i mysql2 --i pg --i pg-hstore --i dotenv-safe --i sequelize-cli"
},
"dependencies": {
"@koa/cors": "^5.0.0",
"@koa/router": "^10.0.0",
"debug": "^4.3.3",
"dotenv-safe": "^8.2.0",
"fast-safe-stringify": "^2.1.1",
"grant-koa": "^5.4.8",
"ioredis": "^4.22.0",
"keygrip": "^1.1.0",
"koa": "^2.13.4",
"koa-body": "^4.2.0",
"koa-cash": "^4.0.5",
"koa-compress": "^3.1.0",
"koa-etag": "^4.0.0",
"koa-json-error": "^3.1.2",
"koa-logger": "^3.2.1",
"koa-mount": "^4.0.0",
"koa-openapi": "^7.3.0",
"koa-session": "^5.13.1",
"koa2-swagger-ui": "^5.0.5",
"ms": "^2.1.3",
"mysql2": "^2.1.0",
"node-cache": "^5.1.2",
"pg": "^8.7.1",
"pg-hstore": "^2.3.4",
"sequelize": "^6.13.0",
"superagent": "^5.1.0",
"swagger-client": "^3.13.6",
"uuid": "^8.3.2",
"winston": "^3.2.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/node": "^7.8.4",
"@babel/polyfill": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/register": "^7.8.3",
"@faker-js/faker": "^6.3.1",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-watch": "^7.7.0",
"dependency-check": "^4.1.0",
"npm-run-all": "^4.1.5",
"sequelize-cli": "^6.2.0",
"server-destroy": "^1.0.1",
"standard": "^16.0.4",
"supertest": "^4.0.2",
"tape": "^4.11.0"
},
"standard": {
"ignore": [
"**/lib/**"
]
}
}