-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.13 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
{
"name": "meowing-holy-carbon",
"version": "2024.12.13",
"description": "Travis's Advent of Code 2024",
"author": "Travis Hardiman",
"homepage": "https://github.com/dieseltravis/aoc2024/",
"main": "server.js",
"scripts": {
"test": "node --check server.js && semistandard && eslint server.js public/*.js",
"start": "node --watch server.js"
},
"engines": {
"node": ">=18.20.5 || >=20.0.0 || >=22.0.0 || >=24.0.0"
},
"dependencies": {
"connect-timeout": "^1.9.0",
"dotenv": "^16.4.7",
"eslint": "^9.16.0",
"express": "^5.0.1",
"express-rate-limit": "^7.4.1",
"jshint": "^2.13.6",
"semistandard": "^17.0.0",
"standard-engine": "^15.1.0"
},
"repository": {
"url": "https://github.com/dieseltravis/aoc2024/"
},
"license": "Hippocratic-3.0",
"keywords": [
"adventofcode",
"advent",
"advent-of-code",
"advent-of-code-2024"
],
"browserslist": [
"defaults",
"node > 18",
"fully supports es6-module",
"maintained node versions"
],
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.16.0",
"globals": "^15.13.0"
}
}