forked from csaunders-ldt/advent2023
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 858 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
{
"name": "advent2023",
"version": "1.0.0",
"description": "Advent of code",
"main": "index.js",
"repository": "https://github.com/csaunders-ldt/advent2023.git",
"author": "csaunders-ldt <chris@letsdothis.com>",
"license": "UNLICENSED",
"private": false,
"scripts": {
"setup": "ts-node ./setup/setup.ts",
"typescript": "ts-node ./setup/advent.ts",
"python": "python3 ./advent.py",
"ruby": "ruby ./setup./advent.rb",
"start": "yarn typescript"
},
"dependencies": {
"dotenv": "^16.0.3",
"lodash": "^4.17.21"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.2",
"@types/caller": "^1.0.2",
"@types/lodash": "^4.14.202",
"@types/node": "20.10.1",
"@types/node-fetch": "^2.6.9",
"caller": "^1.1.0",
"prettier": "^3.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
}
}