-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
101 lines (101 loc) · 2.92 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
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "flowtest",
"version": "1.0.0",
"private": true,
"homepage": ".",
"packageManager": "pnpm@9.0.6",
"engines": {
"node": ">=18.17.0"
},
"scripts": {
"start": "pnpm run build && cd packages/flowtest-electron && pnpm start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint . --ext .js,.json,.cjs",
"lint:fix": "eslint --fix . --ext .js,.json,.cjs",
"format": "prettier --write '**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc",
"clean": "rm -rf node_modules/ && rm -rf packages/flowtest-electron/node_modules/"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@codemirror/commands": "^6.5.0",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/language": "^6.10.1",
"@codemirror/state": "^6.4.1",
"@codemirror/view": "^6.26.3",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@headlessui/react": "^1.7.18",
"@heroicons/react": "^2.1.1",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@tippyjs/react": "^4.2.6",
"allotment": "^1.20.0",
"autoprefixer": "^10.4.18",
"axios": "^1.5.1",
"codemirror": "^6.0.1",
"date-fns": "^3.6.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.29.1",
"form-data": "^4.0.0",
"immer": "^10.0.4",
"lodash": "^4.17.21",
"mousetrap": "^1.6.5",
"notistack": "^3.0.1",
"postcss": "^8.4.35",
"posthog-node": "^4.0.1",
"react": "^18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "^18.2.0",
"react-edit-text": "^5.1.1",
"react-icons": "^5.0.1",
"react-json-view-lite": "^1.4.0",
"react-perfect-scrollbar": "^1.5.8",
"react-router": "^6.15.0",
"react-router-dom": "^6.22.2",
"react-scripts": "5.0.1",
"react-sliding-pane": "^7.3.0",
"react-toastify": "^10.0.5",
"react-tooltip": "^5.26.2",
"reactflow": "^11.8.3",
"socket.io-client": "^4.7.4",
"tailwindcss": "^3.4.1",
"typescript": "4",
"web-vitals": "^2.1.4",
"zustand": "^4.5.2"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@tailwindcss/typography": "^0.5.10",
"@types/node": "20.11.5",
"daisyui": "^4.7.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import-alias": "^1.2.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11"
}
}