-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.09 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
{
"name": "@timkurvers/advent-of-code",
"author": "Tim Kurvers <[email protected]>",
"repository": "github:timkurvers/advent-of-code",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"bootstrap": "node src/bootstrap.js",
"lint": "eslint . --ext js,mjs",
"progress": "node src/progress.js",
"start": "node src/runner.js",
"start:dev": "nodemon --ext js,yaml,txt --watch . --watch ../puzzles --exec npm run start",
"style:fix": "prettier . --write",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch"
},
"dependencies": {
"colors": "^1.3.2",
"fs-extra": "^9.0.0",
"globby": "^10.0.1",
"minimist": "^1.2.6",
"table": "^5.4.6",
"yaml": "^2.2.2"
},
"devDependencies": {
"@babel/preset-env": "^7.9.5",
"@timkurvers/eslint-config": "^3.0.0",
"babel-jest": "^29.7.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"jest-config": "^29.7.0",
"nodemon": "^2.0.20",
"prettier": "^3.4.1"
},
"engines": {
"node": ">=22.0.0"
}
}