-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 930 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
39
40
41
42
43
{
"name": "aoc-template-typescript",
"version": "1.0.0",
"type": "module",
"description": "Advent of Code template for TypeScript.",
"scripts": {
"lint": "eslint",
"scaffold": "tsx scripts/scaffold.ts",
"solve": "tsx scripts/solve.ts",
"test": "vitest --run",
"typecheck": "tsc",
"prepare": "husky"
},
"keywords": [
"advent of code"
],
"author": "Zachary Cowan",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.16.0",
"@types/node": "^22.10.1",
"eslint": "^9.16.0",
"handlebars": "^4.7.8",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.4.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0",
"vitest": "^2.1.8"
},
"lint-staged": {
"*": [
"prettier --write --ignore-unknown"
],
"*.{js,ts}": [
"eslint"
]
},
"dependencies": {
"zod": "^3.23.8"
}
}