-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
71 lines (71 loc) · 2.12 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
{
"name": "graph",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:dev": "env-cmd -f .env.development yarn build && firebase deploy -P dev",
"build:prod": "env-cmd -f .env.production yarn build && firebase deploy -P prod",
"start-emulators": "firebase emulators:start",
"deploy": "yarn install && yarn build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"generate-api": "orval --config ./src/api/orval.config.cjs"
},
"dependencies": {
"@dagrejs/dagre": "^1.0.4",
"@headlessui/react": "^1.7.17",
"@heroicons/react": "^2.1.1",
"@hookform/resolvers": "^3.3.4",
"axios": "^1.6.2",
"clsx": "^2.1.0",
"firebase": "^10.7.1",
"lodash": "^4.17.21",
"orval": "^6.23.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-draggable": "^4.4.6",
"react-helmet-async": "^2.0.4",
"react-hook-form": "^7.50.1",
"react-icons": "^5.0.1",
"react-query": "^3.39.3",
"react-share": "^5.0.3",
"reactflow": "^11.10.1",
"uuid": "^9.0.1",
"yarn": "^1.22.21",
"zod": "^3.22.4"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.7",
"@types/lodash": "^4.14.202",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.15",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vitejs/plugin-react": "^4.2.0",
"autoprefixer": "^10.4.16",
"env-cmd": "^10.1.0",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"postcss": "^8.4.32",
"prettier": "^3.1.1",
"prettier-plugin-tailwindcss": "^0.5.9",
"react-router-dom": "^6.20.1",
"tailwindcss": "^3.3.6",
"typescript": "^5.2.2",
"vite": "^5.0.10",
"vite-plugin-compression2": "^0.12.0",
"vite-plugin-environment": "^1.1.3"
},
"packageManager": "[email protected]",
"prettier": {
"plugins": [
"prettier-plugin-tailwindcss"
]
}
}