-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.77 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
{
"name": "simplest-firebase-react-app",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"tail": "tailwindcss -i ./src/styles/index.css -o ./dist/output.css",
"build:dev": "env-cmd -f .env.development npm run build && firebase deploy -P dev",
"build:prod": "env-cmd -f .env.production npm run build && firebase deploy -P prod",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@fortawesome/fontawesome-svg-core": "^6.2.1",
"@fortawesome/free-regular-svg-icons": "^6.2.1",
"@fortawesome/free-solid-svg-icons": "^6.2.1",
"@fortawesome/pro-duotone-svg-icons": "^6.2.1",
"@fortawesome/pro-light-svg-icons": "^6.2.1",
"@fortawesome/pro-regular-svg-icons": "^6.2.1",
"@fortawesome/pro-solid-svg-icons": "^6.2.1",
"@fortawesome/pro-thin-svg-icons": "^6.2.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@headlessui/react": "^1.7.13",
"@heroicons/react": "^2.0.16",
"@mui/material": "^5.11.15",
"axios": "^1.3.2",
"d3": "^7.8.2",
"daisyui": "^2.51.3",
"date-fns": "^2.29.3",
"date-fns-tz": "^2.0.0",
"esbuild": "^0.17.11",
"fast-glob": "^3.2.12",
"firebase": "^9.17.1",
"framer-motion": "^10.2.4",
"lodash.debounce": "^4.0.8",
"query-string": "^8.1.0",
"react": "^18.2.0",
"react-bootstrap": "^2.7.2",
"react-datepicker": "^4.11.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.9",
"react-icons": "^4.8.0",
"react-router-dom": "^6.10.0",
"react-simple-typewriter": "^5.0.1",
"react-social-icons": "^5.15.0",
"react-toastify": "^9.1.1",
"react-tooltip": "^5.10.0",
"sweetalert": "^2.1.2",
"sweetalert2": "^11.7.3",
"tw-elements": "^1.0.0-beta1"
},
"devDependencies": {
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/line-clamp": "^0.4.2",
"@tailwindcss/typography": "^0.5.9",
"@types/d3": "^7.4.0",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@vitejs/plugin-react": "^3.1.0",
"autoprefixer": "^10.4.13",
"env-cmd": "^10.1.0",
"file-loader": "^6.2.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"postcss": "^8.4.21",
"prettier": "^2.8.3",
"prettier-plugin-tailwindcss": "^0.2.4",
"tailwindcss": "^3.2.4",
"vite": "^4.1.0",
"vitest": "^0.28.4"
}
}