-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.36 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
39
40
41
42
43
44
45
46
{
"name": "advent-of-code-typescript",
"version": "1.0.0",
"description": "Advent Of Code Solutions in TypeScript",
"scripts": {
"lint": "eslint",
"test": "vitest --no-cache",
"update-stats": "ts-node updateStats.ts",
"test:2015": "vitest 2015",
"test:2016": "vitest 2016",
"test:2017": "vitest 2017",
"test:2018": "vitest 2018",
"test:2019": "vitest 2019",
"test:2020": "vitest 2020",
"test:2021": "vitest 2021",
"test:2022": "vitest 2022",
"test:2023": "vitest 2023",
"test:2024": "vitest 2024",
"test:2025": "vitest 2025"
},
"author": "Attila Kerekes",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"@vitest/coverage-v8": "^4.0.14",
"eslint": "^8.33.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-vitest": "^0.5.4",
"prettier": "^2.8.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"vitest": "^4.0.14"
},
"dependencies": {
"@blakeembrey/deque": "^1.0.5",
"@graph-algorithm/minimum-cut": "^2.0.0",
"bucket-priority-queue": "2.0.0",
"priority-queue-typed": "^2.0.0",
"regenerator-runtime": "^0.14.1",
"z3-solver": "^4.15.4"
}
}