-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.29 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.29 KB
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
{
"name": "tensor-ai-club",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"clean": "rimraf dist",
"prebuild": "npm ci || npm install",
"build": "tsc && vite build",
"build:debug": "npm run prebuild && echo 'Build Environment:' && echo \"Node version: $(node -v)\" && echo \"NPM version: $(npm -v)\" && npm run build --verbose && echo 'Build completed successfully'",
"dev": "vite",
"preview": "vite preview",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"audit:fix": "npm audit fix --force"
},
"dependencies": {
"@emailjs/browser": "^4.4.1",
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@grpc/grpc-js": "^1.9.12",
"@react-three/drei": "^9.88.13",
"@react-three/fiber": "^8.17.12",
"@splinetool/react-spline": "2.2.6",
"@splinetool/runtime": "^1.9.59",
"dotenv": "^16.4.5",
"firebase": "^9.22.1",
"framer-motion": "^10.12.16",
"gsap": "^3.12.7",
"leaflet": "^1.9.4",
"lucide-react": "^0.258.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.5.2",
"react-icons": "^5.4.0",
"react-markdown": "^9.0.3",
"react-particles": "^2.12.2",
"react-router-dom": "^6.14.0",
"react-spinners": "^0.15.0",
"styled-components": "^6.1.15",
"three": "^0.172.0",
"tsparticles-engine": "^2.12.0",
"tsparticles-slim": "^2.12.0"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.16",
"@types/leaflet": "^1.9.8",
"@types/node": "^20.17.14",
"@types/react": "^18.0.37",
"@types/react-dom": "^18.0.11",
"@types/react-icons": "^3.0.0",
"@types/styled-components": "^5.1.34",
"@types/three": "^0.172.0",
"@vitejs/plugin-react": "^4.0.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.45.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"postcss": "^8.4.24",
"rimraf": "^5.0.5",
"tailwindcss": "^3.4.17",
"ts-node": "^10.9.1",
"typescript": "^5.0.2",
"vite": "^4.3.9"
},
"config": {
"optional-dependencies": true
},
"engines": {
"node": ">=18.17.1",
"npm": ">=9.6.7"
}
}