-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.24 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
54
55
{
"private": true,
"name": "advent-of-code",
"version": "1.0.0",
"description": "My solutions for Advent of Code",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"format:check": "prettier . --check",
"dev": "nodemon -e js,txt index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/knutkirkhorn/advent-of-code.git"
},
"keywords": [
"advent",
"of",
"code",
"aoc",
"2021",
"2022",
"2023"
],
"author": "Knut Kirkhorn",
"type": "module",
"engines": {
"node": ">=18.11.0"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/knutkirkhorn/advent-of-code/issues"
},
"homepage": "https://github.com/knutkirkhorn/advent-of-code#readme",
"dependencies": {
"@knutkirkhorn/gcd": "^2.0.0",
"dotenv": "^16.3.1",
"got": "^14.0.0",
"log-symbols": "^6.0.0",
"make-dir": "^4.0.0",
"tough-cookie": "^4.1.3",
"zero-fill": "^2.2.4"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"eslint": "^8.54.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-unicorn": "^49.0.0",
"nodemon": "^3.0.1",
"prettier": "^3.4.1"
}
}