-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1009 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
33
34
35
36
37
38
{
"name": "tdd-kata-4",
"version": "1.0.0",
"description": "",
"engines": {
"node": ">=18.16"
},
"scripts": {
"game": "tsx ./src/01-trivia/game-runner.ts",
"cli": "npm run build && node ./.build/index.js",
"build": "npm run clean && tsc",
"clean": "rimraf .build .coverage",
"typecheck": "tsc --noemit",
"typecheck:w": "tsc --noemit --watch",
"tc": "npm run typecheck",
"tc:w": "npm run typecheck:w",
"lint": "eslint src",
"test": "vitest",
"freshstart": "rimraf .git && git init && git add -A && git commit -m 'Initial commit'"
},
"dependencies": {
},
"devDependencies": {
"@types/node": "18.11.18",
"typescript": "5.3.3",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"@typescript-eslint/eslint-plugin": "7.0.1",
"@typescript-eslint/parser": "7.0.1",
"prettier": "3.2.5",
"prando": "6.0.1",
"rimraf": "5.0.5",
"tsx": "4.7.1",
"vitest": "1.2.2"
},
"author": "",
"license": "ISC"
}