-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 1.18 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
37
38
{
"name": "opendataday-flensburg",
"source": "src/index.html",
"browserslist": "> 0.5%, last 2 versions, not dead",
"staticFiles": {
"staticPath": "static"
},
"scripts": {
"start": "parcel",
"build": "parcel build",
"htmlhint": "htmlhint \"**/*.html\" --ignore \"dist/**/*.html\" --format unix",
"lint:js": "pnpm exec eslint \"src/**/*.js\" --no-error-on-unmatched-pattern",
"lint:html": "pnpm run htmlhint",
"lint:css": "pnpm exec stylelint \"src/**/*.css\"",
"lint": "pnpm run lint:js && pnpm run lint:css && pnpm run lint:html"
},
"dependencies": {
"parcel": "^2.13.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.19.0",
"@parcel/config-default": "^2.13.3",
"@parcel/packager-raw-url": "2.13.3",
"@parcel/transformer-jsonld": "2.13.3",
"@parcel/transformer-raw": "^2.13.3",
"@parcel/transformer-webmanifest": "2.13.3",
"eslint": "^9.19.0",
"globals": "^15.14.0",
"htmlhint": "^1.1.4",
"parcel-reporter-static-files-copy": "^1.5.3",
"postcss": "^8.5.1",
"stylelint": "^16.14.1",
"stylelint-config-standard": "^36.0.1",
"svgo": "^3",
"tailwindcss": "^3.4.17"
}
}