-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 1.2 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
{
"name": "Sozialatlas Flensburg",
"version": "0.0.1",
"description": "Statistische Daten des Sozialatalas der Stadt Flensburg",
"source": "src/index.html",
"browserslist": "> 0.5%, last 2 versions, not dead",
"scripts": {
"clean": "rm -rf dist .parcel-cache",
"start": "pnpm run clean && parcel serve --no-cache",
"build": "pnpm run clean && parcel build --public-url '.'",
"htmlhint": "htmlhint \"**/*.html\" --ignore \"dist/**/*.html\" --format unix",
"prettier": "npm:@yuhr/prettier",
"lint:js": "pnpm exec eslint src",
"lint:html": "pnpm run htmlhint",
"lint:css": "pnpm exec stylelint \"**/*.css\" && pnpm exec prettier --check \"**/*.css\"",
"lint": "pnpm run lint:js && pnpm run lint:css && pnpm run lint:html"
},
"staticFiles": {
"staticPath": "static"
},
"dependencies": {
"@sndcds/mvc": "^0.0.43"
},
"devDependencies": {
"@parcel/config-default": "^2.9.3",
"@yuhr/prettier": "^2.8.7",
"eslint": "8.50.0",
"htmlhint": "^1.1.4",
"parcel": "latest",
"parcel-reporter-static-files-copy": "^1.5.3",
"postcss": "^8.4.30",
"stylelint": "^15.10.3",
"stylelint-config-standard": "^34.0.0",
"tailwindcss": "^3.3.3"
}
}