-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.76 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
{
"name": "elyraos",
"private": true,
"version": "1.0",
"type": "module",
"scripts": {
"dev": "vite",
"server": "node server/index.js",
"server:dev": "node --watch-path=./server/routes --watch-path=./server/index.js --watch-path=./server/config.js --watch-path=./server/db.js --watch-path=./server/mailer.js --watch-path=./server/sseClients.js server/index.js",
"dev:full": "concurrently -n server,vite -c blue,green --kill-others-on-fail \"npm run server:dev\" \"npm run dev\"",
"build": "vite build",
"preview": "vite preview",
"catalog:check": "node scripts/check-iframes.js",
"catalog:check:update": "node scripts/check-iframes.js --update",
"catalog:enrich": "node scripts/enrich-catalog.js",
"catalog:enrich:overwrite": "node scripts/enrich-catalog.js --overwrite"
},
"dependencies": {
"ai": "^6.0.154",
"bcryptjs": "^3.0.3",
"concurrently": "^9.2.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.6",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"express-rate-limit": "^8.3.2",
"fflate": "^0.8.2",
"framer-motion": "^11.3.0",
"jsonwebtoken": "^9.0.3",
"jspdf": "^4.2.1",
"lucide-react": "^0.408.0",
"nodemailer": "^8.0.6",
"pg": "^8.20.0",
"prismjs": "^1.30.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-rnd": "^10.5.3",
"xlsx": "^0.18.5",
"zustand": "^4.5.4"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.19",
"postcss": "^8.4.40",
"tailwindcss": "^3.4.7",
"vite": "^5.3.4"
}
}