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
|
{
"name": "aoc-2020",
"version": "1.0.0",
"description": "Advent of code 2020",
"main": "index.js",
"scripts": {
"start": "ts-node index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jantuomi/aoc-2020.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jantuomi/aoc-2020/issues"
},
"homepage": "https://github.com/jantuomi/aoc-2020#readme",
"dependencies": {
"rxjs": "6.6.3",
"ts-node": "9.0.0",
"typescript": "4.1.2"
},
"devDependencies": {
"@types/node": "14.14.10",
"prettier": "2.2.1"
}
}
|