-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.57 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "digitoegg",
"private": true,
"sideEffects": false,
"scripts": {
"build": "pnpm run build:css && remix build",
"build:css": "tailwindcss -m -i ./styles/app.css -o app/styles/app.css",
"dev": "concurrently \"pnpm run dev:css\" \"remix dev\"",
"dev:css": "tailwindcss -w -i ./styles/app.css -o app/styles/app.css",
"generate": "pnpx pwa-asset-generator public/logo.svg public/assets/manifest -m public/site.webmanifest --padding 'calc(50vh - 25%) calc(50vw - 25%)' -b '#171717' -q 100",
"start": "remix-serve build"
},
"dependencies": {
"@headlessui/react": "^1.7.3",
"@prisma/client": "^4.4.0",
"@remix-run/node": "^1.7.2",
"@remix-run/react": "^1.7.2",
"@remix-run/serve": "^1.7.2",
"@remix-run/vercel": "^1.7.2",
"@sendgrid/mail": "^7.7.0",
"bcryptjs": "^2.4.3",
"cloudinary": "^1.32.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"remix-auth": "^3.3.0",
"remix-auth-form": "^1.2.0",
"remix-utils": "^3.3.0",
"tiny-invariant": "^1.3.1",
"zod": "^3.19.1"
},
"devDependencies": {
"@remix-run/dev": "^1.7.2",
"@remix-run/eslint-config": "^1.7.2",
"@types/bcryptjs": "^2.4.2",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"autoprefixer": "^10.4.12",
"concurrently": "^7.4.0",
"eslint": "^8.24.0",
"postcss": "^8.4.17",
"prettier": "^2.7.1",
"prettier-plugin-tailwind": "^2.2.12",
"prisma": "^4.4.0",
"tailwindcss": "^3.1.8",
"typescript": "^4.8.4"
},
"engines": {
"node": ">=14"
}
}