forked from wkyleg/brutalist-hacker-news
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 799 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
{
"name": "brutalist-hacker-news",
"version": "1.0.0",
"description": "An even more brutalist hacker news reader",
"main": "index.js",
"scripts": {
"dev": "node devServer.js",
"lint:js": "eslint .",
"lint:js:fix": "eslint . --fix",
"lint:css": "stylelint 'index.html'",
"lint:css:fix": "stylelint 'index.html' --fix",
"generate:img": "node generateThemeImages.js",
"generate:md": "node generateThemesMD.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@html-eslint/eslint-plugin": "^0.24.0",
"@html-eslint/parser": "^0.24.0",
"eslint": "^8.57.0",
"eslint-plugin-html": "^8.0.0",
"postcss-html": "^1.6.0",
"stylelint": "^16.3.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-standard": "^36.0.0"
}
}