-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.04 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.04 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
{
"name": "node-reverse-proxy",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node dist/index --config ./config.yaml",
"build": "tsc -p .",
"dev": "tsc-watch --onSuccess \"npm start\"",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --ignore-path .gitignore --write \"./src/**/*.+(js|ts|json)\"",
"prettier:fix": "prettier --write src",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.22.0",
"@types/node": "^22.13.10",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.3",
"globals": "^16.0.0",
"husky": "^9.1.7",
"prettier": "^3.5.3",
"tsc-watch": "^6.2.1",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.1"
},
"dependencies": {
"commander": "^13.1.0",
"yaml": "^2.7.0",
"zod": "^3.24.2"
}
}