-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
60 lines (60 loc) · 1.63 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
56
57
58
59
60
{
"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": "f(){ if [ -z \"$CI\" ]; then jest --onlyChanged $*; else jest $*; fi }; NODE_OPTIONS=--experimental-vm-modules f",
"lint": "eslint src && tsc",
"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",
"@types/jest": "^29.5.13",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.10.0",
"eslint-plugin-prettier": "^5.2.1",
"http-server": "^14.1.1",
"husky": "^9.1.6",
"jest": "^29.7.0",
"playwright": "^1.49.1",
"prettier": "^3.3.3",
"typescript": "^5.6.2",
"typescript-eslint": "^8.18.1"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/templates"
]
},
"prettier": {
"quoteProps": "consistent",
"arrowParens": "avoid"
},
"wallaby": {
"autoDetect": true,
"startAutomatically": true,
"env": {
"params": {
"env": "NODE_OPTIONS=--experimental-vm-modules"
}
}
}
}