-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
26 lines (26 loc) · 999 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
{
"private": true,
"scripts": {
"prebuild": "npm run clean",
"build": "latexmk -interaction=nonstopmode -file-line-error -pdf -halt-on-error -outdir=build main",
"postbuild": "npx shx cp ./build/main.pdf ./surname_name_computer_science_2023_2024.pdf",
"check": "npx npm-run-all --npm-path npm check:*",
"check:format": "npx prettier --check .",
"check:spell": "npx cspell lint --config cspell.json --no-progress --show-context \"**\"",
"clean": "npx shx rm -rf ./build ./surname_name_computer_science_2023_2024.pdf",
"fix": "npx npm-run-all --npm-path npm fix:*",
"fix:format": "npx prettier --write ."
},
"devDependencies": {
"@cspell/dict-en_us": "^4.3.13",
"@cspell/dict-it-it": "^3.1.0",
"@cspell/dict-latex": "^4.0.0",
"@cspell/dict-markdown": "^2.0.1",
"@cspell/dict-npm": "^5.1.11",
"cspell": "^8.17.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.5.1",
"prettier-plugin-latex": "^2.0.1",
"shx": "^0.3.4"
}
}