-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2 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-ts-boilerplate",
"version": "1.0.0",
"main": "src/main.ts",
"license": "MIT",
"scripts": {
"start": "ts-node -r tsconfig-paths/register src/main.ts",
"start:dev": "cross-env NODE_ENV=development webpack -c build/webpack.dev.config.js",
"build": "cross-env NODE_ENV=production webpack -c build/webpack.prod.config.js",
"test": "jest"
},
"dependencies": {
"bull": "^3.18.1",
"globby": "^11.0.1",
"handlebars": "^4.7.6",
"jsonwebtoken": "^8.5.1",
"koa": "^2.13.0",
"koa-body": "^4.2.0",
"koa-compose": "^4.1.0",
"koa-cors": "^0.0.16",
"koa-favicon": "^2.1.0",
"koa-json": "^2.0.2",
"koa-jwt": "^4.0.0",
"koa-logger": "^3.2.1",
"koa-onerror": "^4.1.0",
"koa-router": "^10.0.0",
"koa-session-minimal": "^4.0.0",
"koa-static-server": "^1.5.2",
"reflect-metadata": "^0.1.13",
"tsconfig-paths": "^3.9.0"
},
"devDependencies": {
"@types/bull": "^3.14.4",
"@types/jsonwebtoken": "^8.5.0",
"@types/koa-cors": "^0.0.0",
"@types/koa-favicon": "^2.0.19",
"@types/koa-json": "^2.0.18",
"@types/koa-logger": "^3.1.1",
"@types/koa-router": "^7.4.1",
"@types/koa-session-minimal": "^3.0.5",
"@types/koa-static-server": "^1.3.0",
"@types/node": "^14.14.7",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.6.3",
"prettier": "^2.1.2",
"start-server-webpack-plugin": "^2.2.5",
"supertest": "^6.0.1",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.11",
"ts-node": "^9.0.0",
"typescript": "^4.0.5",
"webpack": "^4.44.2",
"webpack-cli": "^4.2.0",
"webpack-merge": "^5.3.0",
"webpack-node-externals": "^2.5.2"
}
}