-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 844 Bytes
/
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
{
"name": "advent-of-code",
"version": "1.0.0",
"description": "Solutions for the Advent of Code 2022 challenges",
"main": "index.js",
"type": "module",
"scripts": {
"start": "ts-node --esm",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/tbusser/advent-of-code-2022"
},
"author": "Thijs Busser",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"dotenv": "^16.0.3",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"dependencies": {
"heap-js": "^2.3.0"
}
}