generated from ErcouldnT/node-typescript-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.24 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
{
"name": "node-typescript-starter",
"version": "1.0.0",
"main": "index.ts",
"license": "MIT",
"scripts": {
"dev": "tsx watch src",
"build": "tsc",
"start": "node dist/src",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"lint": "eslint src/**/*",
"format": "eslint src/**/* --fix",
"check:types": "tsc --noEmit",
"coverage": "vitest run --coverage",
"coverage:result": "vite preview --outDir ./coverage",
"prepare": "husky install",
"update": "ncu -u && yarn install"
},
"lint-staged": {
"src/**/*": "eslint --fix",
"test/**/*": "eslint --fix",
"*.ts": "tsc-files --noEmit"
},
"devDependencies": {
"@types/node": "^20.11.2",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"@vitest/coverage-v8": "^1.2.0",
"@vitest/ui": "^1.2.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"npm-check-updates": "^16.14.12",
"prettier": "^3.2.2",
"tsc-files": "^1.1.4",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^1.2.0"
},
"dependencies": {
"dotenv": "^16.3.1"
}
}