-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.32 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.32 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
{
"name": "process-editor",
"version": "1.0.0",
"description": "Standalone visual BPMN editor for insurance process flows",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"test:run": "vitest run",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"type-check": "tsc --noEmit",
"check-links": "./scripts/check-links.sh",
"prepare": "husky"
},
"dependencies": {
"@bpmn-io/properties-panel": "^3.33.0",
"ajv": "^8.12.0",
"bpmn-js": "^17.0.2",
"bpmn-js-bpmnlint": "^0.21.0",
"bpmn-js-properties-panel": "^5.0.0",
"bpmnlint": "^10.0.0",
"diagram-js": "^14.0.0",
"diagram-js-grid": "^1.1.0",
"jszip": "^3.10.1",
"lucide": "^0.545.0"
},
"devDependencies": {
"@types/jsdom": "^27.0.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.45.0",
"husky": "^9.1.7",
"jsdom": "^27.0.0",
"lint-staged": "^16.2.4",
"typescript": "^5.0.2",
"vite": "^5.0.0",
"vitest": "^1.0.0"
},
"keywords": [
"bpmn",
"process",
"editor",
"insurance",
"workflow"
],
"author": "",
"license": "MIT",
"packageManager": "pnpm@9.0.0"
}