-
Notifications
You must be signed in to change notification settings - Fork 394
/
package.json
105 lines (105 loc) · 3.23 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "routing-controllers",
"private": false,
"version": "0.10.4",
"description": "Create structured, declarative and beautifully organized class-based controllers with heavy decorators usage for Express / Koa using TypeScript.",
"author": "TypeStack contributors",
"license": "MIT",
"sideEffects": false,
"main": "./cjs/index.js",
"module": "./esm2015/index.js",
"es2015": "./esm2015/index.js",
"typings": "./types/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/typestack/routing-controllers.git"
},
"tags": [
"express",
"express.js",
"typescript",
"typescript-express",
"typescript-express.js",
"express-controllers",
"controllers"
],
"scripts": {
"build": "npm run build:cjs",
"build:clean": "rimraf build",
"build:es2015": "tsc --project tsconfig.prod.esm2015.json",
"build:cjs": "tsc --project tsconfig.prod.cjs.json",
"build:types": "tsc --project tsconfig.prod.types.json",
"prettier:fix": "prettier --write \"**/*.{ts,md}\"",
"prettier:check": "prettier --check \"**/*.{ts,md}\"",
"lint:fix": "eslint --max-warnings 0 --fix src/**/*.ts",
"lint:check": "eslint --max-warnings 0 src/**/*.ts",
"test": "jest --verbose --runInBand",
"test:watch": "jest --watch",
"test:ci": "jest --runInBand --no-cache --coverage --verbose",
"test:debug": "NODE_ENV= node --inspect=0.0.0.0:20001 ./node_modules/.bin/jest --colors --runInBand --no-coverage --watch"
},
"dependencies": {
"cookie": "^0.6.0",
"glob": "^11.0.0",
"reflect-metadata": "^0.2.2",
"template-url": "^1.0.0"
},
"peerDependencies": {
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.10.0",
"@koa/cors": "^5.0.0",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.0",
"@types/form-data": "^2.5.0",
"@types/jest": "^29.5.13",
"@types/koa": "^2.15.0",
"@types/multer": "^1.4.12",
"@types/node": "^16.18.3",
"@types/serve-static": "^1.15.7",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"axios": "^1.7.7",
"body-parser": "^1.20.3",
"chakram": "^1.5.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"cors": "^2.8.5",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.3",
"form-data": "^4.0.0",
"handlebars": "^4.7.8",
"http-status-codes": "^2.3.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"koa-convert": "^2.0.0",
"koa-session": "^6.4.0",
"koa-views": "^8.1.0",
"lint-staged": "^15.2.10",
"multer": "^1.4.5-lts.1",
"mustache-express": "^1.3.2",
"prettier": "^3.3.3",
"request": "^2.88.2",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tslint": "^6.1.2",
"typedi": "^0.10.0",
"typescript": "^5.5.3"
},
"optionalDependencies": {
"@koa/multer": "^3.0.2",
"@koa/router": "^12.0.1",
"body-parser": "^1.20.2",
"express": "^4.21.0",
"express-session": "^1.18.0",
"koa": "^2.15.3",
"koa-bodyparser": "^4.4.1",
"multer": "^1.4.5-lts.1"
}
}