-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 1020 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
33
34
35
{
"name": "aoc.stuff",
"version": "0.0.1",
"description": "AoC Code",
"main": "index.js",
"author": "Martin Rohrmeier <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=14"
},
"scripts": {
"requirements-check": "node src/util/check-version.js",
"use-latest": "export PATH=$(echo $PATH | sed -e 's/node@14/node@17/')",
"test": "jest",
"all": "node src/run",
"solve": "NODE_OPTIONS=--no-deprecation node src/util/solve",
"start": "yarn run open",
"open": "concurrently \"cd docs && http-server -a localhost -p 1234\" \"open http://localhost:1234/\"",
"deploy": "aws s3 sync --acl public-read docs/ s3://rohrmeier/aoc"
},
"dependencies": {
"graphlib": "^2.1.8",
"heapify": "^0.4.0",
"https-proxy-agent": "^5.0.0",
"lodash": "^4.17.21",
"lodash.product": "^18.9.19",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"concurrently": "^6.3.0",
"http-server": "^13.0.2",
"jest": "^27.2.4",
"semver": "^7.3.5"
}
}