-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.75 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
{
"name": "koa-server",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "npx tsc-watch -b -w ./tsconfig.json --onSuccess \"node dist/index.js\"",
"start": "pm2 start ./pm2.yaml"
},
"dependencies": {
"@hapi/joi": "^16.1.8",
"@koa/router": "^8.0.5",
"@types/hapi__joi": "^16.0.4",
"@types/koa": "2.11.0",
"@types/koa-ejs": "^4.2.0",
"@types/koa-static": "^4.0.1",
"@types/koa__router": "^8.0.2",
"@types/node": "12.12.7",
"bcrypt": "3.0.7",
"core-js": "3.4.1",
"dot-env": "0.0.1",
"ejs": "3.0.1",
"koa": "2.11.0",
"koa-body": "4.1.1",
"koa-ejs": "^4.3.0",
"koa-logger": "3.2.1",
"koa-session": "5.12.3",
"koa-sslify": "^4.0.3",
"koa-static": "^5.0.0",
"module-alias": "^2.2.2",
"mongoose": "5.8.1",
"mongoose-unique-validator": "2.0.3",
"pm2": "4.2.1",
"reflect-metadata": "^0.1.13",
"ts-loader": "6.2.1",
"typeorm": "^0.2.21",
"typescript": "3.7.2"
},
"devDependencies": {
"@types/bcrypt": "3.0.0",
"@types/ejs": "3.0.0",
"@types/koa-logger": "3.1.1",
"@types/koa-session": "5.10.1",
"@types/koa-sslify": "^4.0.1",
"@types/mongoose": "5.5.34",
"@types/mongoose-unique-validator": "1.0.3",
"dotenv": "8.2.0",
"dotenv-parse-variables": "0.2.3",
"fork-ts-checker-webpack-plugin": "3.1.0",
"raf": "3.4.1",
"tsc-watch": "4.0.0",
"tslint": "5.20.1",
"tslint-config-prettier": "1.18.0"
},
"_moduleAliases": {
"@config": "dist/config",
"@controllers": "dist/controllers",
"@middleware": "dist/middleware",
"@models": "dist/models",
"@router": "dist/router",
"@services": "dist/services",
"@utils": "dist/utils",
"@views": "dist/views"
},
"license": "MIT"
}