-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.86 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
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "wie-viele-menschen",
"homepage": "https://digitalservicebund.github.io/wie-viele-menschen/",
"private": true,
"type": "module",
"license": "MIT",
"scripts": {
"build": "nuxt build",
"build:pages": "nuxt build --preset github_pages",
"dev": "nuxt dev",
"test:e2e": "playwright test --config=test/e2e/playwright.config.ts",
"test:a11y": "playwright test --config=test/a11y/playwright.config.ts",
"tests": "npm run build && npm run test:e2e && npm run test:a11y",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint:check": "eslint . --max-warnings 0 .",
"lint:fix": "npm run lint:check --fix",
"format:check": "prettier --check .",
"format:fix": "prettier --write --ignore-unknown .",
"style:check": "npm run format:check && npm run lint:check",
"style:fix": "npm run format:fix && npm run lint:fix",
"audit:licences": "license-checker --production --excludePrivatePackages --onlyAllow 'MIT;BSD-3-Clause;ISC;Apache-2.0;CC-BY-4.0;CC-BY-ND-4.0;Python-2.0;BSD-2-Clause;BlueOak-1.0.0;CC0-1.0;CC-BY-3.0' --summary"
},
"dependencies": {
"@digitalservice4germany/angie": "^1.2.0",
"@digitalservice4germany/style-dictionary": "^2.0.0",
"@nuxtjs/tailwindcss": "^6.12.0",
"nuxt": "^3.12.4",
"vue": "^3.4.27",
"vue-router": "^4.4.0"
},
"devDependencies": {
"@axe-core/playwright": "^4.9.1",
"@nuxt/devtools": "^1.3.9",
"@nuxt/eslint": "^0.3.13",
"@nuxtjs/tailwindcss": "^6.12.0",
"@playwright/test": "^1.45.3",
"axe-playwright": "^2.0.1",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"license-checker": "^25.0.1",
"playwright": "^1.44.1",
"postcss": "^8.4.38",
"prettier": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.4",
"tailwindcss": "^3.4.4"
}
}