-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.49 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.49 KB
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
{
"name": "Decentra",
"type": "module",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"test": "vitest",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration --config vitest.integration.config.ts",
"test:e2e": "node tests/e2e/scripts/run-synapse-e2e.mjs",
"test:e2e:run": "nuxt build && start-server-and-test preview 3000 cucumber-js",
"test:e2e:smoke": "nuxt build && start-server-and-test preview 3000 \"cucumber-js --tags @smoke\"",
"test:coverage": "vitest run --coverage",
"test:ci:fast": "npm run test:unit && npm run test:integration && npm run test:e2e:smoke",
"test:ci:full": "npm run test:unit && npm run test:integration && npm run test:coverage && npm run test:e2e",
"test:e2e:headed": "cross-env HEADLESS=false npm run test:e2e",
"prepare:e2e": "playwright install chromium"
},
"dependencies": {
"@nuxt/ui": "^4.4.0",
"matrix-js-sdk": "^37.5.0",
"nuxt": "^4.3.1",
"vue": "^3.5.28",
"vue-router": "^4.6.4"
},
"devDependencies": {
"@cucumber/cucumber": "^11.0.0",
"@playwright/test": "^1.49.0",
"@types/chai": "^5.2.3",
"@vitest/coverage-v8": "^2.1.0",
"@vue/test-utils": "^2.4.6",
"chai": "^4.5.0",
"cross-env": "^10.1.0",
"happy-dom": "^16.0.0",
"start-server-and-test": "^2.0.0",
"vitest": "^2.1.0"
},
"version": "0.1.0"
}