-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.8 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.8 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "flowatch",
"version": "1.0.0",
"private": true,
"description": "Modern Flowable 7 OSS REST GUI — BPMN/DMN modeler + runtime operations",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"lint": "biome lint .",
"format": "biome format --write .",
"check": "biome ci .",
"check:p-001": "bash scripts/ci/check-fetch-funnel.sh",
"check:p-001:test": "bash scripts/ci/__tests__/check-fetch-funnel.test.sh",
"test": "vitest run",
"test:watch": "vitest",
"test:browser": "vitest --workspace=vitest.workspace.ts --project=browser run",
"test:all": "vitest --workspace=vitest.workspace.ts run",
"test:coverage": "vitest run --coverage",
"e2e": "playwright test",
"e2e:ui": "playwright test --ui",
"e2e:update-snapshots": "playwright test --update-snapshots",
"release": "semantic-release",
"prepare": "husky",
"release:preview": "node scripts/release/preview-fast.mjs",
"release:preview:full": "node scripts/release/preview.mjs",
"badges:update": "node scripts/release/update-readme-badges.mjs",
"badges:check": "node scripts/release/update-readme-badges.mjs --check"
},
"dependencies": {
"@bpmn-io/form-js-viewer": "1.21.3",
"@tanstack/react-router": "^1.169.2",
"bpmn-js": "^17.11.1",
"dmn-js": "^16.6.1",
"oidc-client-ts": "^3.5.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-oidc-context": "^3.3.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.3",
"@biomejs/biome": "^2",
"@commitlint/cli": "^21.0.1",
"@commitlint/config-conventional": "^21.0.1",
"@playwright/test": "^1.60.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^12.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.8",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^12.0.0",
"@stryker-mutator/core": "^9.6.1",
"@stryker-mutator/vitest-runner": "^9.6.1",
"@tanstack/router-devtools": "^1.166.13",
"@tanstack/router-plugin": "^1.167.35",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@tsconfig/vite-react": "^7.0.2",
"@types/react": "^18.3.28",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/browser": "^3.2.4",
"@vitest/coverage-v8": "^3.2.4",
"conventional-changelog-conventionalcommits": "^7.0.2",
"husky": "^9.1.7",
"jsdom": "^25.0.1",
"jszip": "^3.10.1",
"license-checker-rseidelsohn": "^4.4.2",
"playwright": "^1.60.0",
"semantic-release": "^25.0.3",
"typescript": "^5.9.3",
"vite": "^5.4.8",
"vitest": "^3.2.4"
}
}