-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 936 Bytes
/
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
{
"name": "template-ts-vite-kata",
"version": "1.0.0",
"description": "TypeScript template to make kata with vitest",
"main": "index.js",
"type": "commonjs",
"scripts": {
"test": "vitest",
"ts:check": "tsc --noEmit",
"test:ci": "vitest run --coverage",
"test:coverage": "vitest --coverage",
"lint": "eslint \"./**/*.{ts,js}\"",
"lint:fix": "eslint \"./**/*.{ts,js}\" --fix",
"format": "prettier . --check",
"format:fix": "prettier . --write"
},
"author": "Anthony REY",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^8.57.0",
"@types/eslint__js": "^8.42.3",
"@vitest/coverage-v8": "^2.0.5",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.2.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.3",
"typescript": "^5.5.4",
"typescript-eslint": "^8.1.0",
"vitest": "^2.0.5"
}
}