-
-
Notifications
You must be signed in to change notification settings - Fork 172
/
package.json
28 lines (28 loc) · 877 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
{
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "2.7.1",
"stylelint": "^14.9.1",
"stylelint-config-standard": "^26.0.0",
"stylelint-config-standard-scss": "^5.0.0",
"typescript": "^4.7.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"scripts": {
"build": "webpack",
"watch": "onchange -i -k '**/*.html' -- npm run dev",
"dev": "cd exampleSite && hugo server --buildDrafts --disableFastRender --gc",
"lint": "npm run eslint && npm run stylelint",
"eslint": "eslint assets --ext .ts --ext .js",
"stylelint": "stylelint assets/**/*.scss"
},
"dependencies": {
"katex": "^0.16.4"
}
}