-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.16 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
{
"name": "@porsche-design-system/templates",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build && cp -r ./dist/src/. ./dist && rm -rf ./dist/src",
"preview": "vite preview",
"format": "biome format",
"lint": "biome lint",
"test:e2e": "playwright test --config=tests/e2e/config/playwright.config.ts",
"test:a11y": "playwright test --config=tests/a11y/config/playwright.config.ts",
"test:vrt": "playwright test --config=tests/vrt/config/playwright.config.ts",
"test:lh": "playwright test --config=tests/lh/config/playwright.config.ts",
"docker": "docker compose -f docker-compose.yml -p porsche-design-system-templates run --service-ports --rm repository yarn \"${@}\""
},
"dependencies": {
"@porsche-design-system/components-js": "^3.24.0"
},
"devDependencies": {
"@axe-core/playwright": "^4.10.1",
"@biomejs/biome": "^1.9.4",
"@playwright/test": "^1.49.1",
"@types/node": "^22.10.7",
"get-port": "^7.1.0",
"lighthouse": "^12.3.0",
"sass": "^1.83.4",
"vite": "^6.0.10"
},
"volta": {
"node": "22.12.0",
"yarn": "1.22.22"
}
}