-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.33 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.33 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "rpa-platform",
"version": "1.0.0",
"description": "RPA Platform - Full-stack automation workflow builder",
"type": "module",
"main": "server/index.js",
"scripts": {
"dev": "concurrently \"vite\" \"cd server && node --watch index.js\" \"cd server && node --watch webhook-server.js\"",
"build": "vite build",
"start": "cd server && node index.js",
"preview": "vite preview",
"lint": "eslint .",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:integration": "cd server && node tests/test-integration.js",
"test:webhooks": "cd server && node tests/test-webhooks.js",
"webhook": "cd server && node webhook-server.js",
"webhook:dev": "cd server && node --watch webhook-server.js"
},
"dependencies": {
"@clerk/clerk-react": "^5.42.1",
"@radix-ui/react-slot": "^1.2.3",
"@supabase/supabase-js": "^2.55.0",
"@tailwindcss/postcss": "^4.1.12",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cobe": "^0.6.4",
"cors": "^2.8.5",
"dotenv": "^17.2.1",
"express": "^5.1.0",
"helmet": "^8.1.0",
"morgan": "^1.10.1",
"motion": "^12.23.12",
"next-themes": "^0.4.6",
"node-fetch": "^3.3.2",
"puppeteer": "^24.17.0",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"react": "^18.2.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.2.0",
"react-icons": "^5.0.1",
"react-router-dom": "^6.11.1",
"sonner": "^2.0.7",
"svix": "^1.73.0",
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7",
"uuid": "^9.0.0",
"ws": "^8.18.0",
"zustand": "^5.0.8"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.21",
"concurrently": "^9.2.0",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"jsdom": "^26.1.0",
"nodemon": "^3.0.0",
"postcss": "^8.5.6",
"prop-types": "^15.8.1",
"tailwindcss": "^4.1.12",
"vite": "^5.4.19",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=18.0.0"
}
}