-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 3.07 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
{
"name": "budgetsco",
"private": true,
"description": "",
"license": "",
"sideEffects": false,
"scripts": {
"postinstall": "npx prisma generate",
"build": "npm run build:css && npm run build:worker && remix build",
"build:css": "tailwindcss -m -i ./styles/app.css -o app/styles/app.css",
"build:worker": "esbuild ./app/entry.worker.ts --outfile=./public/entry.worker.js --minify --bundle --format=esm --define:process.env.NODE_ENV='\"production\"'",
"deploy": "cp ./app/lib/prod.ui.config.ts ./app/lib/ui.config.ts && npm uninstall @remix-run/serve && DEPLOYMENT_TARGET=flyio npm run build && fly deploy --remote-only && npm install @remix-run/serve",
"stage-deploy": "cp ./app/lib/test.ui.config.ts ./app/lib/ui.config.ts && NODE_ENV=production DEPLOYMENT_TARGET=vercel npm run build && vercel deploy --prod",
"dev": "cp ./app/lib/test.ui.config.ts ./app/lib/ui.config.ts && concurrently \"npm run dev:css\" \"npm run dev:worker\" \"remix dev\"",
"dev:css": "tailwindcss -w -i ./styles/app.css -o app/styles/app.css",
"dev:worker": "esbuild ./app/entry.worker.ts --outfile=./public/entry.worker.js --bundle --format=esm --define:process.env.NODE_ENV='\"development\"' --watch",
"start": "cross-env NODE_ENV=production node ./server.js",
"testserver": "concurrently \"npm run dev:css\" \"npm run dev:worker\" \"remix dev\""
},
"dependencies": {
"@formkit/auto-animate": "^0.8.1",
"@googleapis/androidpublisher": "^4.0.0",
"@prisma/client": "^5.5.2",
"@remix-run/express": "2.2.0",
"@remix-run/node": "2.2.0",
"@remix-run/react": "2.2.0",
"@remix-run/serve": "^2.10.2",
"@remix-run/v1-route-convention": "^0.1.1",
"@rmwc/dialog": "^7.0.3",
"@rmwc/ripple": "^7.0.3",
"@simplewebauthn/browser": "^10.0.0",
"@simplewebauthn/server": "^10.0.0",
"@tanstack/react-table": "^8.11.2",
"clsx": "^1.2.1",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"date-fns": "^2.30.0",
"decimal.js": "^10.4.3",
"downshift": "^7.6.0",
"express": "^4.18.2",
"firebase": "^10.0.0",
"firebase-admin": "^11.9.0",
"isbot": "^3.6.5",
"lodash.escaperegexp": "^4.1.2",
"match-sorter": "^6.3.1",
"mixpanel": "^0.17.0",
"morgan": "^1.10.0",
"newrelic": "^11.5.0",
"otplib": "^12.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"recharts": "^2.9.3",
"stripe": "12.6.0",
"workbox-background-sync": "^7.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@playwright/test": "^1.38.1",
"@remix-run/dev": "2.2.0",
"@remix-run/eslint-config": "2.2.0",
"@simplewebauthn/types": "^10.0.0",
"@tailwindcss/forms": "^0.5.2",
"@types/lodash.escaperegexp": "^4.1.7",
"@types/newrelic": "^7.0.3",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"autoprefixer": "^10.4.7",
"concurrently": "^7.2.0",
"dotenv": "^16.0.3",
"eslint": "^8.20.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.13",
"prisma": "^5.5.2",
"tailwindcss": "^3.3.5",
"typescript": "^5.1.3"
},
"engines": {
"node": "20.x"
}
}