generated from jeremylvln/AdventOfCode2023
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.77 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "adventofcode2024",
"version": "0.0.0",
"private": true,
"type": "module",
"engines": {
"node": "^22"
},
"scripts": {
"build": "npm run build:typecheck && swc src -d dist",
"build:typecheck": "tsc --noEmit",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint \"src/**/*.ts\" --config .eslintrc.cjs",
"lint:fix": "eslint \"src/**/*.ts\" --config .eslintrc.cjs --fix",
"day1": "npm run build && node dist/src/day1.js",
"day2": "npm run build && node dist/src/day2.js",
"day3": "npm run build && node dist/src/day3.js",
"day4": "npm run build && node dist/src/day4.js",
"day5": "npm run build && node dist/src/day5.js",
"day6": "npm run build && node dist/src/day6.js",
"day7": "npm run build && node dist/src/day7.js",
"day8": "npm run build && node dist/src/day8.js",
"day9": "npm run build && node dist/src/day9.js",
"day10": "npm run build && node dist/src/day10.js",
"day11": "npm run build && node dist/src/day11.js",
"day12": "npm run build && node dist/src/day12.js",
"day13": "npm run build && node dist/src/day13.js",
"day14": "npm run build && node dist/src/day14.js",
"day15": "npm run build && node dist/src/day15.js",
"day16": "npm run build && node dist/src/day16.js",
"day17": "npm run build && node dist/src/day17.js",
"day18": "npm run build && node dist/src/day18.js",
"day19": "npm run build && node dist/src/day19.js",
"day20": "npm run build && node dist/src/day20.js",
"day21": "npm run build && node dist/src/day21.js",
"day22": "npm run build && node dist/src/day22.js",
"day23": "npm run build && node dist/src/day23.js",
"day24": "npm run build && node dist/src/day24.js",
"day25": "npm run build && node dist/src/day25.js"
},
"author": "Jérémy Levilain <jeremy@jeremylvln.fr>",
"dependencies": {
"@swan-io/boxed": "3.1.2",
"heap-js": "^2.5.0",
"ts-pattern": "5.5.0"
},
"devDependencies": {
"@swc/cli": "0.5.2",
"@swc/core": "1.10.0",
"@tsconfig/node20": "20.1.4",
"@tsconfig/node22": "22.0.0",
"@tsconfig/strictest": "2.0.5",
"@types/node": "22.10.1",
"@typescript-eslint/eslint-plugin": "8.17.0",
"@typescript-eslint/parser": "8.17.0",
"eslint": "8.54.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.7.0",
"eslint-plugin-import": "npm:eslint-plugin-i@2.29.1",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-sonarjs": "0.23.0",
"eslint-plugin-unicorn": "49.0.0",
"eslint-plugin-unused-imports": "3.2.0",
"husky": "9.1.7",
"prettier": "3.4.2",
"type-fest": "4.30.0",
"typescript": "5.7.2"
},
"packageManager": "pnpm@10.0.0-beta.1+sha256.04a46f912a650ef2dc835455934063bea4b8c2cfae3df3176e005b0fc34c470b"
}