-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.32 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
39
40
41
42
{
"name": "advent",
"version": "1.0.0",
"description": "",
"scripts": {
"makeDay": "npx ts-node makeDay.ts",
"day": "NODE_OPTIONS=--huge-max-old-generation-size npx ts-node runDay.ts",
"year": "NODE_OPTIONS=--huge-max-old-generation-size npx ts-node runYear.ts",
"lint": "npx @biomejs/biome check",
"lint:fix": "npx @biomejs/biome check --write",
"format": "npx @biomejs/biome format",
"format:fix": "npx @biomejs/biome format --write",
"typecheck": "tsc",
"tidy": "npm run lint:fix && npm run format:fix && npm run typecheck",
"checktidy": "npm run lint && npm run format && npm run typecheck && npm run test:ci",
"test": "jest",
"prepare": "husky"
},
"author": "[email protected]",
"license": "ISC",
"dependencies": {
"cli-color": "^2.0.4",
"console-log-level": "^1.4.1",
"js-combinatorics": "^2.1.2",
"lodash": "^4.17.21",
"spark-md5": "^3.0.2"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/cli-color": "^2.0.6",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.13",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0"
}
}