-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1017 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
35
36
37
38
39
40
{
"name": "@mbarz/advent-of-code",
"version": "1.0.0",
"description": "advent of code",
"main": "index.js",
"scripts": {
"2023": "ts-node src/2023/run.ts",
"test": "jest",
"build": "tsc",
"build:watch": "tsc --watch",
"new": "ts-node src/new.ts",
"today": "ts-node src/2024/runner.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mbarz/advent-of-code.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mbarz/advent-of-code/issues"
},
"homepage": "https://github.com/mbarz/advent-of-code#readme",
"devDependencies": {
"@types/jest": "^29.2.4",
"@types/node": "^18.19.0",
"@typescript-eslint/eslint-plugin": "^5.45.1",
"@typescript-eslint/parser": "^5.45.1",
"eslint": "^8.29.0",
"jest": "^29.3.1",
"prettier": "^3.1.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^12.1.0"
}
}