-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.74 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
{
"name": "texel-moda",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"dev:server": "nodemon server/index.js",
"start:server": "node server/index.js",
"start:prod": "NODE_ENV=production node server/index.js",
"build": "vite build",
"build:server": "node server/index.js",
"lint": "eslint .",
"preview": "vite preview",
"install:all": "npm install && cd server && npm install",
"dev:all": "concurrently \"npm run dev\" \"npm run dev:server\"",
"test": "echo \"No tests specified\" && exit 0"
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@stripe/stripe-js": "^2.1.0",
"axios": "^1.18.0",
"bcryptjs": "^3.0.3",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^5.2.1",
"express-rate-limit": "^8.5.1",
"framer-motion": "^12.12.1",
"gsap": "^3.13.0",
"helmet": "^8.1.0",
"joi": "^18.2.1",
"jsonwebtoken": "^9.0.3",
"mongoose": "^9.7.2",
"multer": "^2.2.0",
"nodemailer": "^9.0.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-hook-form": "^7.68.0",
"react-icons": "^5.5.0",
"react-router-dom": "^7.18.2",
"react-tsparticles": "^2.12.2",
"strip": "^3.0.0",
"stripe": "^12.13.0",
"tsparticles": "^3.8.1",
"zod": "^4.2.1",
"html-to-text": "^9.0.5"
},
"devDependencies": {
"@eslint/js": "^9.25.0",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@vitejs/plugin-react": "^6.0.2",
"autoprefixer": "^10.4.21",
"eslint": "^9.25.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.0.0",
"postcss": "^8.5.14",
"tailwindcss": "^3.3.5",
"vite": "^8.0.16"
}
}