-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 2.11 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": "koa-ts-demo",
"version": "0.0.1",
"description": "Koa TypeScript Demo",
"author": "chicunic",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/chicunic/vscode-ts-linter.git"
},
"engines": {
"node": ">=20"
},
"type": "commonjs",
"scripts": {
"format": "prettier --write \"src/**/*.ts\"",
"start": "ts-node -r tsconfig-paths/register src/app.ts",
"start:dev": "concurrently \"nodemon\" \"nodemon -x tsoa spec-and-routes\"",
"start:prod": "node dist/app.js",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"build": "tsoa spec-and-routes && tsc",
"build:swagger": "tsoa spec-and-routes",
"prepare": "husky",
"test": "eslint \"{src,apps,libs,test}/**/*.ts\""
},
"dependencies": {
"@koa/cors": "^5.0.0",
"@koa/router": "^12.0.1",
"@tsoa/runtime": "^6.0.0",
"dotenv": "^16.4.1",
"jsonwebtoken": "^9.0.2",
"koa": "^2.15.0",
"koa-bodyparser": "^4.4.1",
"koa-mount": "^4.0.0",
"koa-session": "^6.4.0",
"koa-static": "^5.0.0",
"koa2-swagger-ui": "^5.10.0",
"promise.any": "^2.0.6",
"tsoa": "^6.0.1"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.5",
"@types/koa": "^2.14.0",
"@types/koa-bodyparser": "^4.3.12",
"@types/koa-cors": "^0.0.6",
"@types/koa-mount": "^4.0.5",
"@types/koa-session": "^6.4.5",
"@types/koa-static": "^4.0.4",
"@types/koa__router": "^12.0.4",
"@types/node": "^20.11.10",
"@types/nodemon": "^1.19.6",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"husky": "^9.0.7",
"nodemon": "^3.0.3",
"prettier": "^3.2.4",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3"
}
}