-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
33 lines (33 loc) · 1007 Bytes
/
package.json
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
{
"name": "remix-supabase-auth",
"private": true,
"description": "Bare minimum and un-opinionated example using Remix to implement Supabase's email/password and social auth",
"license": "MIT",
"author": "Arpit Dalal <arpitdalalm@gmail.com> (https://arpitdalal.dev)",
"sideEffects": false,
"scripts": {
"build": "cross-env NODE_ENV=production remix build",
"dev": "node -r dotenv/config node_modules/.bin/remix dev",
"postinstall": "remix setup node",
"start": "cross-env NODE_ENV=production remix-serve build"
},
"dependencies": {
"@remix-run/node": "^1.4.3",
"@remix-run/react": "^1.4.3",
"@remix-run/serve": "^1.4.3",
"@supabase/supabase-js": "^1.35.3",
"cross-env": "^7.0.3",
"dotenv": "^16.0.1",
"react": "^18.0.1",
"react-dom": "^18.0.1"
},
"devDependencies": {
"@remix-run/dev": "^1.4.3",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.4",
"typescript": "^4.6.4"
},
"engines": {
"node": ">=14"
}
}