-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 851 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
{
"name": "advent-of-code",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install",
"generate-game-grammar": "cd ./src/challenges/day2/fun/ && apg -i ./gameGrammar.abnf -o ./gameGrammar.js",
"generate-engine-grammar": "cd ./src/challenges/day3/ && apg -i ./engineGrammar.abnf -o ./engineGrammar.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"eslint": "^8.54.0",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"prettier": "3.1.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npx eslint --fix",
"prettier --write --ignore-unknown"
],
"*.json": [
"prettier --write --ignore-unknown"
]
},
"dependencies": {
"apg": "^3.1.2"
}
}