-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.35 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
{
"name": "advent-of-code-typescript",
"version": "1.0.0",
"description": "Advent Of Code Solutions in TypeScript",
"scripts": {
"lint": "eslint",
"test": "jest --no-cache",
"update-stats": "ts-node updateStats.ts",
"test:2015": "jest 2015",
"test:2016": "jest 2016",
"test:2017": "jest 2017",
"test:2018": "jest 2018",
"test:2019": "jest 2019",
"test:2020": "jest 2020",
"test:2021": "jest 2021",
"test:2022": "jest 2022",
"test:2023": "jest 2023",
"run201515": "ts-node ./2022/day15.run.ts",
"run201811": "ts-node ./2018/day11.run.ts"
},
"author": "Attila Kerekes",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"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-jest": "^27.2.1",
"jest": "^29.4.1",
"prettier": "^2.8.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"@blakeembrey/deque": "^1.0.5",
"@graph-algorithm/minimum-cut": "^2.0.0",
"bucket-priority-queue": "2.0.0",
"regenerator-runtime": "^0.14.1",
"z3-solver": "^4.12.4"
}
}