-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.67 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
{
"name": "ecoverse",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint ./src/ --report-unused-disable-directives --max-warnings 0",
"lint-fix": "eslint ./src/ --fix",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"preview": "vite preview",
"prepare": "cd .. && husky install frontend/.husky",
"generate-pwa-assets": "pwa-assets-generator --preset minimal public/icons/eco-verse.png"
},
"lint-staged": {
"*.ts": "eslint",
"*.tsx": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && pretty-quick --staged"
}
},
"dependencies": {
"@aadeshk/medium-common": "^1.0.2",
"@headlessui/react": "^2.1.1",
"@headlessui/tailwindcss": "^0.2.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-tooltip": "^1.1.2",
"@remixicon/react": "^4.2.0",
"@tremor/react": "^3.17.4",
"@vercel/analytics": "^1.3.1",
"animate.css": "^4.1.1",
"axios": "^1.6.8",
"bootstrap": "^5.3.3",
"canvas-confetti": "^1.9.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"firebase": "^10.12.3",
"formik": "^2.4.6",
"framer-motion": "^11.2.12",
"lodash.debounce": "^4.0.8",
"lucide-react": "^0.397.0",
"react": "^18.2.0",
"react-bootstrap": "^2.10.3",
"react-confetti": "^6.1.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.52.1",
"react-icons": "^5.2.1",
"react-quill": "^2.0.0",
"react-router-dom": "^6.23.0",
"react-toastify": "^10.0.5",
"react-use": "^17.5.0",
"tailwind-merge": "^2.3.0",
"tailwind-scrollbar-hide": "^1.1.7",
"tailwindcss-animate": "^1.0.7",
"workbox-window": "^7.1.0"
},
"devDependencies": {
"@eslint/js": "^9.3.0",
"@types/lodash.debounce": "^4.0.9",
"@types/node": "^20.12.12",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vite-pwa/assets-generator": "^0.2.4",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"globals": "^15.3.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.5",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"pretty-quick": "^4.0.0",
"tailwindcss": "^3.4.4",
"typescript": "^5.2.2",
"typescript-eslint": "^7.10.0",
"vite": "^5.2.0",
"vite-plugin-pwa": "^0.20.0"
}
}