-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.7 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.7 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
{
"name": "fsx",
"version": "1.0.0-alpha",
"scripts": {
"build": "cd src/client && npx vite build --outDir ../../../dist/client --manifest && cd ../../ && npx vite build --ssr src/client/entry-server.tsx --outDir dist/server",
"dev": "pnpm run build && nodemon src/server/server.js",
"dev:server": "nodemon src/server/server.js",
"build:client": "cd src/client && npx vite build",
"deploy": "cd src/client && npx vite build && cd ../../ && pnpm run start",
"start": "pm2-runtime src/server/server.js"
},
"type": "module",
"dependencies": {
"@tsparticles/react": "^3.0.0",
"@vitejs/plugin-react": "^4.7.0",
"compression": "^1.8.1",
"dotenv": "^17.2.0",
"express": "^5.1.0",
"framer-motion": "^12.23.12",
"fs": "0.0.1-security",
"helmet": "^8.1.0",
"ignore-styles": "^5.0.1",
"lucide-react": "^0.525.0",
"path-to-regexp": "6.2.1",
"pm2-runtime": "^5.4.1",
"postcss": "^8.5.6",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-ga": "^3.3.1",
"react-helmet": "^6.1.0",
"react-parallax-tilt": "^1.7.307",
"react-router": "^7.6.3",
"react-router-dom": "^7.6.3",
"redis": "^5.6.0",
"swiper": "^11.2.10",
"tailwindcss": "^3.4.18",
"tsparticles-engine": "^2.12.0",
"vite": "^7.1.9",
"vite-manifest-parser": "^1.0.1"
},
"devDependencies": {
"@babel/preset-react": "^7.27.1",
"@types/react-dom": "^19.1.6",
"@types/react-helmet": "^6.1.11",
"@types/react-router-dom": "^5.3.3",
"@types/serve-static": "^1.15.8",
"autoprefixer": "^10.4.21",
"babel-register": "^6.26.0",
"esbuild-register": "^3.6.0",
"grunt": "^1.6.1",
"ignore": "^7.0.5",
"nodemon": "^3.1.10"
}
}