-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.54 KB
/
package.json
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": "@reactflow/project",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --port 3000 --open --host",
"serve": "vite serve --port 3000",
"build": "vite build",
"test:dev": "cypress open",
"test": "pnpm test-component && pnpm test-e2e",
"test-component": "cypress run --component",
"test-e2e-cypress": "cypress run --e2e --headless",
"test-e2e": "start-server-and-test 'pnpm serve' http-get://localhost:3000 'pnpm test-e2e-cypress'"
},
"dependencies": {
"@ant-design/icons": "^5.3.7",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@reactflow/node-resizer": "^2.2.13",
"@reduxjs/toolkit": "^2.2.3",
"@tanstack/react-query": "^5.40.0",
"@tisoap/react-flow-smart-edge": "^3.0.0",
"@types/uuid": "^9.0.8",
"antd": "^5.17.3",
"classcat": "^5.0.3",
"dagre": "^0.8.5",
"localforage": "^1.10.0",
"notistack": "^3.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^9.1.1",
"react-router-dom": "^6.3.0",
"reactflow": "^11.11.3",
"redux": "^5.0.1",
"styled-components": "^6.1.11",
"uuid": "^9.0.1",
"zustand": "^4.4.1"
},
"devDependencies": {
"@cypress/skip-test": "^2.6.1",
"@types/dagre": "^0.7.48",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^4.0.4",
"cypress": "^12.17.3",
"cypress-real-events": "^1.10.0",
"start-server-and-test": "^1.14.0",
"typescript": "^4.9.4",
"vite": "^4.4.9"
}
}