-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.13 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
{
"name": "ts-vitest-kata-bootstrap",
"version": "1.0.0",
"description": "A bootstrap for katas using TypeScript and Vitest",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"build:clean": "npm run clean && npm run build",
"lint": "eslint . --max-warnings=0 && tsc --noEmit",
"clean": "rimraf -g dist *.tsbuildinfo",
"test": "cross-env NODE_ENV=test && vitest run",
"test:watch": "cross-env NODE_ENV=test && vitest watch",
"test:coverage": "cross-env NODE_ENV=test && vitest run --coverage"
},
"keywords": [
"typescript",
"vite",
"kata",
"bootstrap"
],
"author": "Benjamin Rae <benjaminrae93@gmail.com>",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.11.16",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitest/coverage-v8": "^1.2.2",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-xo": "^0.43.1",
"eslint-config-xo-typescript": "^1.0.1",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"vitest": "^1.2.2"
}
}