-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
83 lines (83 loc) · 2.58 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
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
78
79
80
81
82
83
{
"private": true,
"name": "yours-sincerely",
"description": "An ephemeral anonymous blog to send each other tiny beautiful letters",
"license": "MIT",
"prisma": {
"seed": "npx ts-node -T prisma/seed.ts"
},
"scripts": {
"postinstall": "npm run prisma-generate",
"sync": "npx cap sync",
"open-android": "npx cap open android",
"open-ios": "npx cap open ios",
"build": "cross-env NODE_ENV=production remix build",
"dev-android": "npx cap run android && adb reverse tcp:3000 tcp:3000",
"dev-ios": "npx cap run ios",
"dev": "cross-env NODE_ENV=development remix dev",
"prisma-generate": "prisma generate",
"prisma-seed": "prisma db seed",
"prisma-push": "prisma db push",
"prisma-studio": "prisma studio",
"format": "prettier --write app"
},
"dependencies": {
"@capacitor/android": "^5.7.4",
"@capacitor/app": "^5.0.7",
"@capacitor/core": "^5.7.4",
"@capacitor/ios": "^5.7.4",
"@capacitor/preferences": "^5.0.7",
"@capacitor/push-notifications": "^5.1.1",
"@capacitor/share": "^5.0.7",
"@capacitor/splash-screen": "^5.0.7",
"@headlessui/react": "^1.7.18",
"@knocklabs/node": "^0.4.26",
"@knocklabs/react-notification-feed": "^0.8.15",
"@mojs/core": "^1.7.1",
"@prisma/client": "^5.11.0",
"@react-hook/hotkey": "^3.1.0",
"@remix-run/node": "^1.19.3",
"@remix-run/react": "^1.19.3",
"@remix-run/vercel": "^1.19.3",
"@vercel/node": "^2.15.10",
"bcryptjs": "^2.4.3",
"date-fns": "^2.30.0",
"framer-motion": "^10.18.0",
"isbot": "^3.8.0",
"nprogress": "^0.2.0",
"postmark": "^3.11.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-infinite-scroll-hook": "^4.1.1",
"react-popper": "^2.3.0",
"reading-time": "^1.5.0",
"remix-auth": "^3.6.0",
"remix-auth-form": "^1.4.0",
"remix-auth-google": "^1.3.0",
"remix-utils": "^6.6.0",
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@capacitor/cli": "^5.7.4",
"@remix-run/dev": "^1.19.3",
"@remix-run/eslint-config": "^1.19.3",
"@remix-run/serve": "^1.19.3",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.12",
"@types/bcryptjs": "^2.4.6",
"@types/nprogress": "^0.2.3",
"@types/react": "^18.2.73",
"@types/react-dom": "^18.2.23",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.5.13",
"prisma": "^5.11.0",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.3"
},
"engines": {
"node": ">=18"
},
"sideEffects": false
}