-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.41 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
{
"name": "gdgc-website",
"type": "module",
"scripts": {
"dev": "vite --port 3000",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . --ext .jsx --fix",
"pretty": "pnpm prettier --write .",
"precommit": "lint-staged"
},
"dependencies": {
"@lottiefiles/lottie-interactivity": "^1.6.2",
"@lottiefiles/lottie-player": "^2.0.3",
"@lottiefiles/react-lottie-player": "^3.5.3",
"@react-three/drei": "^9.97.6",
"@react-three/fiber": "^8.15.16",
"lottie-interactive": "^1.3.2",
"lottie-web": "^5.12.2",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.0.1",
"react-intersection-observer": "^9.8.0",
"react-is": "^18.2.0",
"react-lottie": "^1.2.4",
"react-router-dom": "^6.22.0",
"react-typed": "^2.0.12",
"styled-components": "^6.1.8",
"three": "^0.161.0"
},
"devDependencies": {
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.19",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"sass": "^1.71.0",
"simple-git-hooks": "^2.9.0",
"vite": "^5.1.3"
},
"simple-git-hooks": {
"pre-commit": "pnpm precommit"
},
"lint-staged": {
"*.(jsx|js)": [
"pnpm lint",
"pnpm pretty"
],
"*.scss": [
"pnpm pretty"
]
}
}