-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.29 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
{
"name": "kola",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"watch:server": "webpack --watch --config ./dev_server/webpack.config.js",
"watch:client": "webpack --watch --config ./dev_client/webpack.config.js",
"analyze:client": "webpack --watch --config ./dev_client/webpack.analyze.config.js",
"analyze:server": "webpack --watch --config ./dev_server/webpack.analyze.config.js",
"build:server": "webpack -p --config ./dev_server/webpack.prod.config.js",
"build:client": "webpack -p --config ./dev_client/webpack.prod.config.js"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/hapi__joi": "^16.0.2",
"@types/http-status-codes": "^1.2.0",
"@types/jsonwebtoken": "^8.3.5",
"@types/koa": "^2.0.51",
"@types/koa-bodyparser": "^5.0.2",
"@types/koa-jwt": "^3.3.0",
"@types/koa-router": "^7.0.42",
"@types/koa-session": "^5.10.1",
"@types/lodash": "^4.14.144",
"@types/mongodb": "^3.3.7",
"@types/node": "^12.12.3",
"@types/path-to-regexp": "^1.7.0",
"awesome-node-loader": "^1.1.1",
"compression-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.4",
"css-loader": "^3.2.0",
"file-loader": "^4.2.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.8.0",
"nodemon-webpack-plugin": "^4.1.1",
"sass-loader": "^8.0.0",
"source-map-loader": "^0.2.4",
"source-map-support": "^0.5.16",
"ts-loader": "^6.2.1",
"tslint": "^5.20.0",
"typescript": "^3.6.4",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.41.2",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.10",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@hapi/joi": "^16.1.7",
"auto-bind": "^3.0.0",
"bcryptjs": "^2.4.3",
"http-status-codes": "^1.4.0",
"jsonwebtoken": "^8.5.1",
"kcors": "^2.2.2",
"koa": "^2.11.0",
"koa-adapter": "^0.0.3",
"koa-bodyparser": "^4.2.1",
"koa-compress": "^3.0.0",
"koa-conditional-get": "^2.0.0",
"koa-etag": "^3.0.0",
"koa-jwt": "^3.6.0",
"koa-router": "^7.4.0",
"koa-session": "^5.12.3",
"koa-static": "^5.0.0",
"koa2-joi-validator": "^1.0.5",
"lodash": "^4.17.15",
"mongodb": "^3.3.3",
"path-to-regexp": "^3.1.0",
"winston": "^3.2.1"
}
}