forked from fkc-alt/http-typedi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.34 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
{
"name": "http-typedi",
"private": false,
"version": "0.4.5",
"description": "http Dependency Injection",
"main": "dist/http-typedi.umd.js",
"files": [
"dist",
"tsconfig.json"
],
"author": "Jack",
"keywords": [
"http",
"typedi",
"http-typedi",
"type",
"class",
"decorators"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/fkc-alt/http-typedi/issues"
},
"homepage": "https://github.com/fkc-alt/http-typedi#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/fkc-alt/http-typedi.git"
},
"types": "dist/types/index.d.ts",
"typings": "dist/types/index.d.ts",
"scripts": {
"prepare": "husky install && npm run setup:docs",
"test": "vitest",
"dev": "vite --mode=dev",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint packages --no-error-on-unmatched-pattern --fix",
"setup:docs": "cd ./docs && npm install",
"docs:dev": "cd ./docs && npm run docs:dev",
"docs:build": "cd ./docs && npm run docs:build",
"docs:preview": "cd ./docs && npm run docs:preview",
"pre-commit": "lint-staged"
},
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@types/node": "^18.15.13",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"axios": "^1.3.6",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-prettier": "^4.2.1",
"http-typedi": "^0.4.4",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"mockjs": "^1.1.0",
"prettier": "^2.8.7",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^5.0.2",
"vite": "^4.3.0",
"vite-plugin-dts": "^2.3.0",
"vite-plugin-mock": "^3.0.0",
"vitest": "^0.31.0"
},
"dependencies": {
"@swc/core": "^1.3.53",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"reflect-metadata": "^0.1.13",
"unplugin-swc": "^1.3.2"
},
"lint-staged": {
"packages/**/*.{ts,d.ts}": [
"eslint --fix"
],
"vite.config.ts": [
"eslint --fix"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}