-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.5 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
{
"name": "node-typescript-starter",
"version": "1.0.0",
"main": "index.ts",
"license": "MIT",
"author": "Ercode Tech ('https://erkut.dev')",
"engines": {
"npm": "Please use yarn instead of npm."
},
"bugs": {
"url": "https://github.com/ErcouldnT/node-typescript-starter/issues"
},
"keywords": [
"typescript",
"prettier",
"eslint",
"node"
],
"scripts": {
"dev": "tsx watch src",
"build": "rm -rf build && tsc",
"start": "node build",
"check:types": "tsc --noEmit",
"lint": "eslint src/**/* test/**/*",
"format": "eslint src/**/* test/**/* --fix",
"test": "vitest --run",
"test:ui": "vitest --ui",
"coverage": "vite preview --outDir ./coverage",
"prepare": "husky",
"update": "ncu -u && yarn"
},
"lint-staged": {
"src/**/*": "eslint --fix",
"test/**/*": "eslint --fix",
"*.ts": "tsc-files --noEmit"
},
"devDependencies": {
"@types/node": "^20.11.22",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"@vitest/coverage-v8": "^1.3.1",
"@vitest/ui": "^1.3.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"npm-check-updates": "^16.14.15",
"prettier": "^3.2.5",
"tsc-files": "^1.1.4",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"vitest": "^1.3.1"
},
"packageManager": "[email protected]+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447"
}