-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.38 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": "my-app",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint .",
"preview": "vite preview",
"build:css": "tailwindcss build src/tailwind.css -o dist/styles.css",
"start": "npm run build:css && react-scripts start"
},
"dependencies": {
"@reduxjs/toolkit": "^2.4.0",
"autoprefixer": "10.4.20",
"axios": "^1.7.8",
"firebase": "11.1.0",
"framer-motion": "11.18.0",
"lodash": "4.17.21",
"lucide-react": "0.471.1",
"marked": "^15.0.3",
"normalize.css": "^8.0.1",
"p5": "^1.11.2",
"postcss": "8.5.1",
"postcss-cli": "^11.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "5.0.0",
"react-redux": "^8.0.0",
"react-router-dom": "7.1.1",
"styled-components": "6.1.14",
"tailwindcss": "3.4.17",
"three": "^0.171.0",
"tree": "^0.1.3",
"zxcvbn": "4.4.2"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/three": "^0.170.0",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.15.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"globals": "^15.12.0",
"postcss-preset-env": "^10.1.3",
"vite": "^6.0.1"
}
}