-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.07 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
{
"name": "AdventOfCode",
"version": "1.0.0",
"description": "Repo for AdventOfCode",
"main": "index.ts",
"type": "module",
"scripts": {
"start": "NODE_OPTIONS='--import tsx --max-old-space-size=16384' node ./index.ts",
"test": "NODE_OPTIONS=\"--experimental-vm-modules\" jest",
"generate": "tsx ./generate.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@inquirer/editor": "^1.2.13",
"@inquirer/input": "^1.2.14",
"@inquirer/prompts": "^3.3.0",
"@types/jest": "^29.5.10",
"@types/node": "^20.10.1",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"minimist": "^1.2.8",
"prettier": "^3.1.0",
"ts-jest": "^29.1.1",
"tsx": "^4.6.1",
"typescript": "^5.3.2"
},
"dependencies": {
"@datastructures-js/priority-queue": "^6.3.0",
"cli-progress": "^3.12.0",
"lodash": "^4.17.21",
"piscina": "^4.2.0"
}
}