-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.18 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
{
"name": "adventofcode",
"version": "1.0.0",
"description": "",
"scripts": {
"clean": "rimraf build",
"copy": "copyfiles 2023/**/*.txt build",
"build": "yarn clean && yarn copy && tsc -b",
"test": "tsc --noEmit && eslint ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@sindresorhus/tsconfig": "^3.0.1",
"@types/inquirer": "^9.0.3",
"@types/node": "^18.11.15",
"abstract-astar": "^0.2.0",
"chalk": "^5.2.0",
"console.table": "^0.10.0",
"copyfiles": "^2.4.1",
"inquirer": "^9.1.4",
"kruskal": "^0.0.5",
"lodash": "^4.17.21",
"log-update": "^5.0.1",
"mathjs": "^11.5.0",
"random-seed": "^0.3.0",
"rimraf": "^5.0.5"
},
"devDependencies": {
"@types/lodash": "^4.14.191",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.1",
"tsx": "^3.12.1",
"typescript": "^4.9.4"
}
}