-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 820 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 820 Bytes
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
{
"name": "iot-project",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently \"next dev --turbopack\" \"node bridge/index.js\"",
"dev:next": "next dev --turbopack",
"dev:bridge": "node bridge/index.js",
"build": "next build",
"start": "concurrently \"next start\" \"node bridge/index.js\"",
"bridge": "node bridge/index.js"
},
"dependencies": {
"@supabase/auth-helpers-nextjs": "^0.10.0",
"@supabase/ssr": "^0.7.0",
"@supabase/supabase-js": "^2.56.0",
"clsx": "^2.1.1",
"next": "15.5.2",
"react": "19.1.0",
"react-dom": "19.1.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"concurrently": "^9.2.1",
"eslint": "^9",
"eslint-config-next": "15.5.2",
"tailwindcss": "^4"
}
}