This repository was archived by the owner on Sep 29, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.91 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.91 KB
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
{
"name": "mitg.logistics",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"private": true,
"keywords": [],
"author": "",
"license": "ISC",
"scripts": {
"build": "tsup",
"start:dev": "tsx watch --clear-screen=false src/index.ts",
"start:prod": "node dist/index.js",
"test": "vitest run",
"test:cov": "vitest run --coverage",
"lint": "eslint \"src/**/*.+(ts|js)\"",
"format": "prettier --ignore-path .gitignore \"src/**/*.+(ts|js)\" --write",
"postinstall": "husky install"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"envalid": "^8.0.0",
"express": "^5.1.0",
"express-rate-limit": "^7.5.0",
"helmet": "^8.1.0",
"multer": "1.4.5-lts.2",
"zod": "^3.24.3"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9.25.1",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.1",
"@types/multer": "^1.4.12",
"@types/supertest": "^6.0.3",
"@vitest/coverage-v8": "^3.1.2",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.25.1",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-prettier": "^5.2.6",
"globals": "^16.0.0",
"husky": "^9.1.7",
"lint-staged": "^13.2.2",
"prettier": "^3.5.3",
"supertest": "^7.1.0",
"tsup": "^8.4.0",
"tsx": "4.19.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.31.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.1.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"./src/**/*.{ts,js}": [
"eslint --fix",
"prettier --write"
]
},
"tsup": {
"entry": [
"src",
"!src/**/__tests__/**",
"!src/**/*.test.*"
],
"splitting": false,
"sourcemap": true,
"clean": true
},
"packageManager": "pnpm@10.6.5"
}