forked from AdventOfJavaScript/2023-12-00__starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 784 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
34
35
36
{
"private": true,
"workspaces": {
"packages": [
"api",
"web"
]
},
"devDependencies": {
"@faker-js/faker": "^8.3.1",
"@redwoodjs/auth-supabase-setup": "6.4.1",
"@redwoodjs/cli-storybook": "6.4.1",
"@redwoodjs/core": "6.4.1",
"prettier-plugin-tailwindcss": "0.4.1"
},
"eslintConfig": {
"extends": "@redwoodjs/eslint-config",
"root": true
},
"engines": {
"node": "=18.x",
"yarn": ">=1.15"
},
"prisma": {
"seed": "yarn rw exec seed"
},
"packageManager": "[email protected]",
"dependencies": {
"@supabase/auth-ui-react": "^0.4.6",
"@supabase/auth-ui-shared": "^0.1.8",
"@supabase/supabase-js": "^2.39.0",
"dotenv": "^16.3.1",
"react-drag-drop-files": "^2.3.10",
"ulid": "^2.3.0"
}
}