forked from typestack/routing-controllers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 3.14 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
{
"name": "routing-controllers",
"private": false,
"version": "0.9.0",
"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 --ext .ts src/",
"lint:check": "eslint --max-warnings 0 --ext .ts src/",
"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.4.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"glob": "^7.1.4",
"reflect-metadata": "^0.1.13",
"template-url": "^1.0.0"
},
"peerDependencies": {
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2"
},
"devDependencies": {
"@types/express": "^4.17.6",
"@types/express-session": "^1.17.0",
"@types/form-data": "^2.5.0",
"@types/jest": "^26.0.9",
"@types/koa": "^2.11.3",
"@types/multer": "^1.4.3",
"@types/node": "^14.0.11",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"chakram": "^1.5.0",
"class-transformer": "^0.3.1",
"class-validator": "^0.12.2",
"cors": "^2.8.5",
"eslint": "^7.18.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.20.0",
"form-data": "^3.0.0",
"handlebars": "^4.7.7",
"http-status-codes": "^2.1.4",
"husky": "^4.3.8",
"jest": "^26.2.2",
"kcors": "^2.2.2",
"koa-convert": "^1.2.0",
"koa-session": "^5.12.3",
"koa-views": "^6.2.1",
"lint-staged": "^10.2.11",
"multer": "^1.4.2",
"mustache-express": "^1.3.0",
"prettier": "^2.0.5",
"request": "^2.88.2",
"rimraf": "3.0.2",
"ts-jest": "^26.5.4",
"ts-node": "^8.10.2",
"ts-node-dev": "1.0.0-pre.44",
"tslint": "^6.1.2",
"typedi": "~0.8.0",
"typescript": "^3.9.7"
},
"optionalDependencies": {
"express": "^4.17.1",
"body-parser": "^1.19.0",
"multer": "^1.4.2",
"koa": "^2.8.2",
"koa-bodyparser": "^4.2.1",
"koa-router": "^7.4.0",
"koa-multer": "^1.0.2"
}
}