-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 839 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 839 Bytes
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": "adventofcode2024",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "jest",
"watch": "jest --watch",
"lint": "eslint .",
"start": "tsx scripts/solutions.ts",
"new-day": "tsx scripts/createDay.ts"
},
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@eslint/js": "^9.16.0",
"@types/jest": "^29.5.14",
"babel-jest": "^29.7.0",
"cheerio": "^1.0.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.12.0",
"jest": "^29.7.0",
"prettier": "^3.4.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0"
}
}