-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.18 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
{
"name": "wildhacks-website-2025",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"lint:prettier": "prettier --list-different src",
"lint:format": "prettier --write src",
"start": "serve -s dist -l 8080"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"@mantine/carousel": "^7.15.2",
"@mantine/core": "^7.15.2",
"@mantine/form": "^7.16.0",
"@mantine/hooks": "^7.15.2",
"axios": "^1.7.9",
"embla-carousel-react": "^7.1.0",
"motion": "^11.16.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sass": "^1.80.6",
"serve": "^14.2.4"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"@types/react": "^18.3.10",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.2",
"globals": "^15.9.0",
"prettier": "^3.3.3",
"typescript": "^5.5.3",
"typescript-eslint": "^8.7.0",
"vite": "^5.0.0"
}
}