-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.06 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
{
"name": "advent-of-code-2022",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node days/day13/part1.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/royhadad/advent-of-code-2022.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/royhadad/advent-of-code-2022/issues"
},
"homepage": "https://github.com/royhadad/advent-of-code-2022#readme",
"dependencies": {
"@types/compute-lcm": "^1.1.0",
"@types/lodash": "^4.14.191",
"@types/node": "^18.11.10",
"@typescript-eslint/eslint-plugin": "^5.30.4",
"@typescript-eslint/parser": "^5.30.4",
"axios": "^0.24.0",
"compute-lcm": "^1.1.2",
"date-fns": "^2.29.3",
"eslint": "^8.28.0",
"lodash": "^4.17.21",
"prettier": "^2.8.0",
"promise-all-object-values": "^1.0.8",
"ts-node": "^9.1.1",
"typescript": "^4.9.3",
"typescript-collections": "^1.3.3"
},
"prettier": {
"printWidth": 120
}
}