-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.18 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
{
"name": "aoc2020",
"version": "1.0.0",
"description": "Advent of Code 2020",
"main": "index.js",
"scripts": {
"day-1": "ts-node day-01",
"day-2": "ts-node day-02",
"day-3": "ts-node day-03",
"day-4": "ts-node day-04",
"day-9": "ts-node day-09",
"day-10": "ts-node day-10",
"day-11": "ts-node day-11",
"day-12": "ts-node day-12",
"day-13": "ts-node day-13",
"day-14": "ts-node day-14",
"day-15": "ts-node day-15",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --fix ./day-*/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/artemtam/aoc2020.git"
},
"author": "Artem Tamoian <hello@artemtam.me>",
"license": "ISC",
"bugs": {
"url": "https://github.com/artemtam/aoc2020/issues"
},
"homepage": "https://github.com/artemtam/aoc2020#readme",
"dependencies": {
"@types/node": "^14.14.11",
"ts-node": "^9.1.1",
"typescript": "^4.1.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"eslint": "^7.15.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1"
}
}