-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.46 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
{
"name": "express-typescript-eslint-prettier-template",
"version": "1.0.0",
"description": "An Express.js template with TypeScript, ESLint and Prettier",
"type": "module",
"scripts": {
"dev": "tsx --watch --env-file .env src/index.ts",
"start": "node --env-file .env dist/index.js",
"build": "tsc -p tsconfig.build.json",
"type-check": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest",
"test:run": "vitest --run",
"test:ui": "vitest --ui",
"coverage": "vitest run --coverage",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"express": "^4.21.2"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@tsconfig/node22": "^22.0.0",
"@types/express": "^5.0.0",
"@types/node": "^22.10.2",
"@vitest/coverage-v8": "^2.1.8",
"@vitest/eslint-plugin": "^1.1.24",
"@vitest/ui": "^2.1.8",
"eslint": "^9.17.0",
"eslint-plugin-perfectionist": "^4.6.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2",
"vitest": "^2.1.8"
},
"imports": {
"#*": "./src/*"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint",
"prettier --check"
],
"*.{json,yml,yaml,md}": [
"prettier --check"
]
}
}