-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
52 lines (52 loc) · 1.39 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
{
"name": "adventofcode-solver",
"version": "1.0.0",
"type": "module",
"repository": {
"type": "git",
"url": "[email protected]:shahata/adventofcode-solver.git"
},
"scripts": {
"start": "node src/index.js",
"serve": "http-server -p 443 -S -o -c-1 -C static/http-cert.pem -K static/http-key.pem",
"test": "if [ -z \"$CI\" ]; then vitest run --changed $*; else vitest run $*; fi",
"lint": "eslint src",
"prepare": "husky"
},
"dependencies": {
"@datastructures-js/priority-queue": "^6.3.1",
"@graph-algorithm/minimum-cut": "^2.0.0",
"@shahata/inquirer-timeout-confirm-prompt": "^1.0.1",
"chart.js": "^4.4.7",
"combinatorial-generators": "^1.1.2",
"es-module-shims": "^1.10.0",
"node-forge": "^1.3.1",
"progress": "^2.0.3",
"regenerator-runtime": "^0.14.1"
},
"devDependencies": {
"@playwright/browser-chromium": "^1.47.2",
"@vitest/eslint-plugin": "^1.1.27",
"eslint": "^9.11.1",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.1",
"http-server": "^14.1.1",
"husky": "^9.1.6",
"playwright": "^1.49.1",
"prettier": "^3.4.2",
"typescript": "^5.6.2",
"typescript-eslint": "^8.18.1",
"vitest": "^3.0.5"
},
"prettier": {
"quoteProps": "consistent",
"arrowParens": "avoid"
},
"wallaby": {
"smartStart": [
{
"startMode": "open"
}
]
}
}