This repository has been archived by the owner on Dec 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.71 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
{
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "run-s build:*",
"dev": "run-p dev:*",
"start": "wrangler pages dev --compatibility-date=2023-06-21 ./public --env=.dev.vars",
"typecheck": "tsc -b",
"format": "prettier --write .",
"lint": "eslint ./app",
"lint-run": "eslint --fix ./app",
"test": "vitest",
"build:remix": "cross-env NODE_ENV=production remix build",
"build:worker": "esbuild ./app/entry.worker.ts --outfile=./public/entry.worker.js --minify --bundle --platform=node --format=esm --define:process.env.NODE_ENV='\"production\"'",
"build:message-worker": "esbuild ./app/firebase-messaging-sw.ts --outfile=./public/firebase-messaging-sw.js --minify --bundle --platform=node --format=esm --define:process.env.NODE_ENV='\"production\"'",
"dev:remix": "cross-env NODE_ENV=development remix dev --manual -c \"npm run start\"",
"dev:worker": "esbuild ./app/entry.worker.ts --outfile=./public/entry.worker.js --bundle --platform=node --format=esm --define:process.env.NODE_ENV='\"development\"' --watch",
"dev:message-worker": "esbuild ./app/firebase-messaging-sw.ts --outfile=./public/firebase-messaging-sw.js --bundle --platform=node --format=esm --define:process.env.NODE_ENV='\"development\"' --watch",
"db:migrate": "wrangler d1 migrations apply washboard --local",
"db:seed": "wrangler d1 execute washboard --file ./app/db/seed.sqlite --local"
},
"dependencies": {
"@firebase/auth": "^1.3.0",
"@prisma/client": "^5.1.1",
"@remix-pwa/sw": "*",
"@remix-run/cloudflare": "^2.0.0",
"@remix-run/cloudflare-pages": "^2.0.0",
"@remix-run/css-bundle": "^2.0.0",
"@remix-run/react": "^2.0.0",
"@tsndr/cloudflare-worker-jwt": "^2.2.2",
"@vitejs/plugin-react": "^4.0.4",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"drizzle-orm": "^0.28.5",
"firebase": "^10.3.1",
"isbot": "^3.6.8",
"jsdom": "^22.1.0",
"nanoid": "^4.0.2",
"npm-run-all": "^4.1.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.10.1",
"react-zxing": "^2.0.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^3.19.0",
"@remix-run/dev": "^2.0.0",
"@remix-run/eslint-config": "^2.0.0",
"@types/node": "^20.5.1",
"@types/react": "^18.0.35",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"drizzle-kit": "^0.19.13",
"esbuild": "^0.19.2",
"eslint": "^8.38.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"prettier": "^3.0.1",
"tailwindcss": "^3.3.3",
"typescript": "^5.0.4",
"vitest": "^0.34.1",
"wrangler": "^3.1.1"
},
"engines": {
"node": ">=18.17.1"
}
}