-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.02 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
73
74
75
76
{
"name": "node-koa-boilerplate",
"version": "0.1.0",
"description": "Node - Koa - Boilerplate Project",
"main": "dist/app.js",
"scripts": {
"start": "nodemon",
"start:prod": "tsc && export NODE_ENV=production && node dist/app.js",
"start:development": "tsc && node dist/app.js",
"build": "tsc",
"info": "tsc --version",
"test": "npm run migrate:status",
"migrate:up": "migrate-mongo up",
"migrate:down": "migrate-mongo down",
"migrate:status": "migrate-mongo status",
"eslint": "eslint 'src/**/*.ts'",
"eslint:fix": "eslint --fix 'src/**/*.ts'"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
},
"author": "Aquariophilie",
"license": "MIT",
"homepage": "https://github.com/aquariophilie/node-koa-boilerplate#readme",
"repository": "github:aquariophilie/node-koa-boilerplate",
"keywords": [
"typescript",
"koa",
"koa2",
"jwt",
"winston",
"boilerplate",
"ajv",
"api rest",
"cors",
"inversify",
"mongodb"
],
"dependencies": {
"@koa/cors": "^3.1.0",
"ajv": "^8.8.1",
"bcrypt": "^5.0.1",
"dotenv": "^10.0.0",
"http-errors": "^1.8.0",
"inversify": "^6.0.1",
"jsonwebtoken": "^8.5.1",
"koa": "^2.13.4",
"koa-body": "^4.2.0",
"koa-jwt": "^4.0.3",
"koa-router": "^10.1.1",
"koa-swagger-decorator": "^1.8.0",
"migrate-mongo": "^8.2.3",
"mongodb": "^4.3.1",
"reflect-metadata": "^0.1.13",
"uuid": "^8.3.2",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.5"
},
"devDependencies": {
"@types/http-errors": "^1.8.1",
"@types/jsonwebtoken": "^8.5.6",
"@types/koa": "^2.13.4",
"@types/koa__cors": "^3.0.3",
"@types/koa-router": "^7.4.4",
"@types/node": "^16.11.21",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "5.10.1",
"@typescript-eslint/parser": "5.10.1",
"eslint": "8.7.0",
"eslint-config-airbnb": "19.0.4",
"eslint-plugin-import": "^2.25.4",
"nodemon": "^2.0.15",
"typescript": "^4.4.4"
}
}