-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.07 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
{
"name": "cgoing-lib",
"version": "1.0.0",
"description": "play ground",
"main": "index.js",
"scripts": {
"prepare": "husky install",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0 --fix",
"lint-staged": "lint-staged",
"format": "prettier --write ./**/*.ts",
"type:check": "tsc --noEmit",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"coverage": "vitest run --coverage"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "[email protected]+sha1.7134f9b8d0b70bc7a1954f47af52123cd2b2acce",
"devDependencies": {
"@types/node": "^20.11.30",
"@vitest/ui": "latest",
"axios": "^1.6.5",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"eslint": "^8.57.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.2.5",
"typescript": "latest",
"vite": "latest",
"vite-tsconfig-paths": "latest",
"vitest": "latest"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}