-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.87 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
{
"name": "koa_boilerplate",
"version": "0.0.1",
"description": "try to get best out of koa and routing controller and typedi features",
"main": "./dist/server.js",
"scripts": {
"start:dev": "nodemon --watch src -e ts,tsx --exec ts-node src/server.ts"
},
"keywords": [
"typescript",
"koa",
"typedi",
"routing-controller"
],
"author": "Amirhossein Jani",
"license": "ISC",
"dependencies": {
"@elastic/elasticsearch": "^7.8.0",
"@koa/cors": "^3.1.0",
"@koa/multer": "^3.0.0",
"@koa/router": "^9.3.1",
"@typegoose/typegoose": "^7.3.1",
"bcrypt": "^5.0.0",
"class-transformer": "^0.3.1",
"class-validator": "^0.12.2",
"cron": "^1.8.2",
"dotenv": "^8.2.0",
"fast-safe-stringify": "^2.0.7",
"i18n": "^0.11.1",
"inversify": "^5.0.1",
"ioredis": "^4.17.3",
"koa": "^2.13.0",
"koa-bodyparser": "^4.3.0",
"koa-multer": "^1.0.2",
"koa-router": "^9.1.0",
"mongoose": "^5.9.28",
"mysql2": "^2.1.0",
"reflect-metadata": "^0.1.13",
"routing-controllers": "^0.9.0-alpha.6",
"winston": "^3.3.3",
"winston-transport": "^4.4.0"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/i18n": "^0.8.7",
"@types/ioredis": "^4.17.3",
"@types/jest": "^26.0.9",
"@types/jsonwebtoken": "^8.5.0",
"@types/koa": "^2.11.3",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-helmet": "^5.2.0",
"@types/koa-ratelimit": "^4.2.1",
"@types/koa-router": "^7.4.1",
"@types/mongoose": "^5.7.36",
"@types/mysql2": "github:types/mysql2",
"@types/node": "^14.0.27",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"eslint": "^7.6.0",
"jest": "^26.3.0",
"nodemon": "^2.0.4",
"pm2": "^4.4.0",
"supertest": "^4.0.2",
"ts-jest": "^26.1.4",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
}
}