-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.56 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.56 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
{
"name": "tigerracing-website",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"start": "react-scripts start",
"test": "react-scripts test",
"eject": "react-scripts eject",
"dev": "run-p watch-css vite",
"vite": "vite",
"build": "vite build",
"lint": "eslint --ext .js,.jsx,.ts,.tsx --config ./config/.eslintrc.js src",
"preview": "vite preview",
"concat-css": "concat-cli -f ./src/styles/*.css -o ./src/main.css",
"watch-css": "chokidar './src/styles/*.css' -c 'npm run concat-css'"
},
"dependencies": {
"@fontsource/manrope": "^5.2.6",
"@fontsource/sora": "^5.2.6",
"@gsap/react": "^2.1.2",
"gsap": "^3.13.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-helmet-async": "^2.0.5",
"react-router-dom": "^7.7.0"
},
"devDependencies": {
"@eslint/js": "^9.30.1",
"@tailwindcss/postcss": "^4.1.18",
"@tailwindcss/vite": "^4.1.11",
"@types/node": "^24.1.0",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"autoprefixer": "^10.4.23",
"chokidar-cli": "^3.0.0",
"concat-cli": "^4.0.0",
"eslint": "^9.30.1",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.3.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.18",
"typescript": "~5.8.3",
"typescript-eslint": "^8.35.1",
"vite": "^7.1.5",
"vite-plugin-svgr": "^4.3.0"
}
}