-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.03 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
{
"name": "advent-of-code-2024",
"version": "1.0.0",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/andrewbrennanfr/advent-of-code-2024.git"
},
"author": {
"name": "Andrew Brennan",
"url": "https://github.com/andrewbrennanfr"
},
"license": "MIT",
"scripts": {
"check": "tsc -p ./tsconfig.json",
"format": "prettier --write ./",
"husky": "husky",
"lint": "eslint ./ --fix",
"new": "bash ./new.sh",
"start": "bun test --watch"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@tsconfig/strictest": "^2.0.5",
"@types/bun": "^1.1.14",
"@types/eslint__js": "^8.42.3",
"eslint": "^9.17.0",
"eslint-plugin-functional": "^7.2.0",
"eslint-plugin-perfectionist": "^4.4.0",
"eslint-plugin-unicorn": "^56.0.1",
"husky": "^9.1.7",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1"
}
}