-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.64 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
43
44
45
46
47
48
49
50
51
52
53
{
"name": "advent-of-code-2022",
"version": "1.0.1",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint src",
"test": "jest --inspect=4000",
"prepare": "husky install",
"day1": "ts-node ./src/01/index.ts",
"day2": "ts-node ./src/02/index.ts",
"day3": "ts-node ./src/03/index.ts",
"day4": "ts-node ./src/04/index.ts",
"day5": "ts-node ./src/05/index.ts",
"day6": "ts-node ./src/06/index.ts",
"day7": "ts-node ./src/07/index.ts",
"day8": "ts-node ./src/08/index.ts",
"day9": "ts-node ./src/09/index.ts",
"day10": "ts-node ./src/10/index.ts",
"day11": "ts-node ./src/11/index.ts",
"day12": "ts-node ./src/12/index.ts",
"day13": "ts-node ./src/13/index.ts",
"day14": "ts-node ./src/14/index.ts",
"day15": "ts-node ./src/15/index.ts",
"day16": "ts-node ./src/16/index.ts",
"day17": "ts-node ./src/17/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vladshlianin/advent-of-code-2022.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/vladshlianin/advent-of-code-2022/issues"
},
"homepage": "https://github.com/vladshlianin/advent-of-code-2022#readme",
"devDependencies": {
"@types/jest": "^29.2.3",
"@types/node": "^18.11.10",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.2",
"jest": "^29.3.1",
"prettier": "^2.8.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
}
}