-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.09 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
{
"name": "ewoks-web",
"private": true,
"version": "0.0.1",
"description": "Visualizer for Ewoks workflows",
"author": "European Synchrotron Radiation Facility",
"license": "MIT",
"engines": {
"node": "24.x",
"pnpm": "10.x"
},
"type": "module",
"scripts": {
"start": "vite",
"build": "vite build",
"build:package": "VITE_SERVER_URL='/' pnpm build",
"preview": "vite preview",
"postbuild": "node postbuild.js",
"lint": "pnpm \"/^lint:/\"",
"lint:eslint": "eslint --max-warnings=0",
"lint:tsc": "tsc",
"lint:prettier": "prettier . --cache --check",
"analyze": "npx source-map-explorer 'build/static/js/*.js'",
"cypress": "cypress open --e2e --browser firefox",
"cypress:run": "cypress run --e2e"
},
"dependencies": {
"@microlink/react-json-view": "1.31.20",
"@mui/icons-material": "9.1.0",
"@mui/material": "9.1.0",
"@react-hookz/web": "25.2.0",
"@tanstack/react-query": "5.101.0",
"@xyflow/react": "12.11.0",
"axios": "1.17.0",
"d3-format": "3.1.2",
"elkjs": "0.11.1",
"lodash": "4.18.1",
"nanoid": "5.1.11",
"normalize.css": "^8.0.1",
"path-browserify": "1.0.1",
"react": "19.2.7",
"react-dom": "19.2.7",
"react-error-boundary": "6.1.2",
"react-hook-form": "7.78.0",
"react-resizable-panels": "4.11.2",
"react-timeago": "8.3.0",
"socket.io-client": "4.8.3",
"wouter": "3.10.0",
"zustand": "4.5.7"
},
"devDependencies": {
"@esrf/eslint-config": "2.3.1",
"@testing-library/cypress": "10.1.3",
"@types/d3-format": "3.0.4",
"@types/lodash": "^4.17.24",
"@types/node": "^24.12.0",
"@types/path-browserify": "1.0.3",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "6.0.2",
"cypress": "15.16.0",
"cypress-wait-for-stable-dom": "0.1.0",
"eslint": "9.39.4",
"prettier": "3.8.3",
"typescript": "6.0.3",
"vite": "8.0.16",
"wait-on": "9.0.10",
"web-worker": "1.5.0"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"storybook"
]
}
}
}