2023-06-01 15:25:21 +02:00
|
|
|
{
|
|
|
|
|
"name": "segnapuntianto",
|
|
|
|
|
"private": true,
|
|
|
|
|
"version": "0.0.0",
|
|
|
|
|
"type": "module",
|
|
|
|
|
"scripts": {
|
2026-02-10 23:45:58 +01:00
|
|
|
"dev": "vite",
|
2023-06-01 15:25:21 +02:00
|
|
|
"build": "vite build",
|
2026-02-12 14:11:05 +01:00
|
|
|
"preview": "node server.js",
|
2026-02-10 00:42:48 +01:00
|
|
|
"start": "node server.js",
|
2026-02-12 15:13:04 +01:00
|
|
|
"serve": "vite build && node server.js",
|
|
|
|
|
"test": "vitest",
|
|
|
|
|
"test:unit": "vitest run tests/unit tests/integration",
|
2026-02-12 19:33:29 +01:00
|
|
|
"test:component": "vitest run tests/component",
|
|
|
|
|
"test:stress": "vitest run tests/stress",
|
|
|
|
|
"test:all": "vitest run",
|
2026-02-12 15:13:04 +01:00
|
|
|
"test:ui": "vitest --ui",
|
2026-02-12 19:33:29 +01:00
|
|
|
"test:e2e": "playwright test --config=playwright.config.cjs",
|
|
|
|
|
"test:e2e:ui": "playwright test --config=playwright.config.cjs --ui",
|
|
|
|
|
"test:e2e:codegen": "playwright codegen --config=playwright.config.cjs"
|
2023-06-01 15:25:21 +02:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2026-02-10 00:42:48 +01:00
|
|
|
"express": "^5.2.1",
|
2023-06-12 10:31:27 +02:00
|
|
|
"vue": "^3.2.47",
|
2026-02-10 00:42:48 +01:00
|
|
|
"vue-router": "^4.6.4",
|
|
|
|
|
"wave-ui": "^3.3.0",
|
|
|
|
|
"ws": "^8.19.0"
|
2023-06-01 15:25:21 +02:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2026-02-12 19:33:29 +01:00
|
|
|
"@axe-core/playwright": "^4.11.1",
|
2026-02-12 15:13:04 +01:00
|
|
|
"@playwright/test": "^1.58.2",
|
|
|
|
|
"@types/node": "^25.2.3",
|
2023-06-01 15:25:21 +02:00
|
|
|
"@vitejs/plugin-vue": "^4.1.0",
|
2026-02-12 15:13:04 +01:00
|
|
|
"@vitest/ui": "^4.0.18",
|
2026-02-12 19:33:29 +01:00
|
|
|
"@vue/test-utils": "^2.4.6",
|
2026-02-10 09:54:38 +01:00
|
|
|
"concurrently": "^9.2.1",
|
2026-02-12 19:33:29 +01:00
|
|
|
"happy-dom": "^20.6.1",
|
2026-02-12 15:13:04 +01:00
|
|
|
"jsdom": "^28.0.0",
|
2023-06-01 15:25:21 +02:00
|
|
|
"vite": "^4.3.9",
|
2026-02-12 15:13:04 +01:00
|
|
|
"vite-plugin-pwa": "^0.16.0",
|
|
|
|
|
"vitest": "^4.0.18"
|
2023-06-01 15:25:21 +02:00
|
|
|
}
|
2026-02-12 19:33:29 +01:00
|
|
|
}
|