-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.11 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
40
41
42
{
"name": "advent-of-code",
"version": "1.0.0",
"description": "Solutions for Advent of Code",
"main": "index.js",
"scripts": {
"test": "vitest",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"setup": "ts-node src/setup",
"start": "ts-node -P ./tsconfig.json src/start"
},
"vitest": {
"globals": true,
"transform": {
"^.+\\.ts$": "ts-jest"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/domengabrovsek/advent-of-code-2021.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/domengabrovsek/advent-of-code-2021/issues"
},
"homepage": "https://github.com/domengabrovsek/advent-of-code-2021#readme",
"dependencies": {
"@types/node": "^20.10.1",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"dotenv": "^16.0.3",
"eslint": "^8.53.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-import": "^2.29.0",
"node-html-parser": "^6.1.11",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
}
}