-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.02 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.02 KB
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
{
"author": "vbetsch",
"dependencies": {
"tsx": "^4.21.0"
},
"devDependencies": {
"@swc/jest": "^0.2.39",
"@types/jest": "^30.0.0",
"@vbetsch/config-eslint": "^1.0.5",
"@vbetsch/config-jest": "^1.0.2",
"@vbetsch/config-prettier": "^1.0.2",
"@vbetsch/config-tsconfig": "^1.0.3",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.5"
},
"description": "Kata from CodingDojo",
"engines": {
"node": ">=24.14.1"
},
"main": "src/index.ts",
"name": "code-cracker",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"check": "tsc",
"dev": "npm run check && npm run start:dev",
"format": "prettier --write .",
"lint": "eslint",
"lint:strict": "eslint --max-warnings=0",
"start:dev": "tsx watch src/index.ts",
"start:prod": "node dist/index.js",
"test": "jest",
"test:cov": "jest --coverage"
},
"type": "module",
"version": "1.0.0"
}