-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.88 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
{
"name": "koa-ts",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"watch": "nodemon --exec 'ts-node' src/app.ts",
"start": "ts-node src/app.ts",
"start:dist": "node dist/app.js",
"build": "tsc",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"test": "NODE_ENV=unitTest jest --coverage --verbose",
"test:watch": "NODE_ENV=unitTest jest --coverage --verbose --watch"
},
"author": "Hanggi",
"license": "ISC",
"devDependencies": {
"@types/jest": "^24.9.1",
"@types/koa": "2.0.50",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-conditional-get": "^2.0.0",
"@types/koa-etag": "^3.0.0",
"@types/koa-helmet": "^3.1.2",
"@types/koa-logger": "^3.1.1",
"@types/koa-ratelimit": "^4.2.0",
"@types/koa-static": "^4.0.1",
"@types/koa-useragent": "^2.1.2",
"@types/koa-views": "^2.0.4",
"@types/koa__cors": "^3.0.1",
"@types/koa__multer": "^2.0.1",
"@types/koa__router": "^8.0.2",
"@types/lodash": "^4.14.149",
"@types/node": "^12.12.27",
"@types/socket.io": "^2.1.4",
"@types/supertest": "^2.0.8",
"@types/underscore": "^1.9.4",
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/parser": "^2.19.2",
"eslint": "^6.8.0",
"jest": "^24.9.0",
"supertest": "^4.0.2",
"ts-jest": "^24.3.0",
"ts-node": "^8.6.2",
"typescript": "^3.8.3"
},
"dependencies": {
"@koa/cors": "^3.0.0",
"@koa/multer": "^2.0.2",
"@koa/router": "^8.0.8",
"class-validator": "^0.11.0",
"koa": "^2.11.0",
"koa-bodyparser": "^4.2.1",
"koa-conditional-get": "^2.0.0",
"koa-etag": "^3.0.0",
"koa-helmet": "^5.2.0",
"koa-jwt": "^3.6.0",
"koa-logger": "^3.2.1",
"koa-ratelimit": "^4.2.1",
"koa-static": "^5.0.0",
"koa-useragent": "^3.0.0",
"koa-views": "^6.2.1",
"lodash": "^4.17.15",
"nodemon": "^2.0.2",
"pg": "^7.18.2",
"socket.io": "^2.3.0",
"typeorm": "^0.2.24",
"underscore": "^1.9.2"
}
}