4bd1786ae5
* Initial commit - started work on new billing components * Added a slider component * Added features to the pricing tiers * Small pricing tier margin tweaks * WIP on a concurrecy chart * Reworked the pricing tiers to include a segmented controller and tooltips * Renamed the charts storybook page * Made the way data is added more flexible and added some definition tool tips * Term definitions are used properly in the tiers * Callouts can now have an optional CTA on the right hand side * Alignment fix for the callouts * organize imports * Definition tooltip now its own component * renamed the storybook story * WIP new volume discount table and usage sliders * Added pricing calculator sliders * Fixed alignment of the legend * Breadcrumb now has an upgrade prompt and button * New Join our Slack button in the side menu * New progress meter in the side menu * Use the highest of 2 values to show progress * An attempt to fix the step count in the calculator slider * WIP usage progress bar * Added the 4 progress bars * More examples of the usage bar * Better way to include the percentage in the free plan progress meter * The usage bar now works with the extra runs over the free limit * Pricing calculator has better slider logic * Moved the free plan usage bar into it’s own component and added it to storybook * Usage bar chart now supports a paying customer option and optional billing limit. Also added more usage examples to storybook * Added more examples of usage to storybook * tooltip takes classname * Format numbers nicely * Added a tooltip to show the precise numbers in the chart * small improvements to the billing calculator * New onboarding choose plan page * pricing tiers better fill the size of their container * Removed unused code * Usage bars animate * Wording tweak * Callouts fit the button size better * Added new routes for the 2 new billing pages * import cleanup * Added meta info in the header for bill price, plan type and billing period * made free a noun * Added pricing calculator to the plans page * Fixed some illegal markup when using tooltips * Added container query support * Added new concurrency chart to the usage page * billing now has a green theme * Simplified the plan summary info int the header * Fixed padding alignment * Use a custom lable for the concurrent runs chart * Removed the Job runs table * Latest lockfile * Show a message if you haven’t done runs yet * Added a layoutId to the pageTabs * Show a message callout if you’ve exceeeded 10k runs on the free plan * Added a callout on the plans page if you’re over the runs limit * Fixed button inside button bug * Removed the background gradients from the app * The billing package is importing properly * Getting the curent plan for an org * Reading the current plan and usage * Hooked up the free plan bar * Render basic billing details * vol discount table has optional values * Added a new page to show new subscribers * Created a new hook for confetti on the subscribed page * Toast styling updated * The Invoice and Manage card details links are working * Meta appEnv data optional * Data for the plans page * Format the billing period duration in days * Switch to 20 icons * URL for the subscribed page now includes the org path * New pathBuilder path for the subscribed page * Plans are upgraded/downgraded successfully * Fixed badly named paths * Improved some of the display * Deal with when the user has canceled so they can re-upgrade * Subscribing from Stripe is working, and canceling * Tidied up some bits, latest billing package * The tiers are now rendering using the real data * The onboarding screen is hooked up, but not linked to yet * Onboarding price selection working * Pricing slider working * Price estimation working * Pricing calculator working on the select a plan page * Button copy change * Improved the layout of the run calculator marker * Fix for the period end when you’ve canceled * Improved the formatting in the calculator * Pricing table tooltip uses the vol discount pricing table * Remove the vertical lines from the calculator * Contact us button in Enterprise tier opens the contact us form * Added composite index to triggerdotdev_events.run_executions for event_time and organization_id * Concurrent run chart data * Improves styling, fix for React error with Enterprise contact button * Show warning box when you’ve hit the concurrency in the past 30 days * Lots of work o the usage page * Improvements to the usage page * Show 31 days of data, fix for not showing the current date… * Stripe portal links are generated when the user clicks through * Better alignment of the reference line and x-axis label * Readme update * Fixed pricing button loading buttons * Show warnings about concurrency and runs on the plans page * Removed some storybook stories * Join Slack channel shows if you’re subscribed with instructions * Added a gap between the runs charts * Improved the definitions * Added some margin to the page loading spinner * A wider, cleaner feedback panel * Modal backgrounds match the Sheet style * Fixed menu item text being clipped * Improved icons for execution time and exclusion count * Concurrency chart now renders the dates nicely * Fix for plans data on the plans page * The healthcheck doesn’t need to do a HEAD request to / * Better disabled states and fixed the disabled hover state issue * Improved the segmented controller style * loading spinner now centered inside the button * Redirect to the project page when selecting the free plan * Fix for “Runs” and added real date to upgrade warning * DeCAPITALIZED some things --------- Co-authored-by: James Ritchie <james@jamesritchie.co.uk>
195 lines
6.6 KiB
JSON
195 lines
6.6 KiB
JSON
{
|
|
"private": true,
|
|
"name": "webapp",
|
|
"version": "1.0.0",
|
|
"sideEffects": false,
|
|
"scripts": {
|
|
"build": "run-s build:**",
|
|
"build:db:seed": "esbuild --platform=node --bundle --minify --format=cjs ./prisma/seed.ts --outdir=prisma",
|
|
"build:remix": "remix build",
|
|
"build:server": "esbuild --platform=node --format=cjs ./server.ts --outdir=build",
|
|
"dev": "cross-env PORT=3030 remix dev",
|
|
"dev:manual": "cross-env PORT=3030 remix dev -c \"node ./build/server.js\"",
|
|
"format": "prettier --write .",
|
|
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
|
|
"start": "cross-env NODE_ENV=production node --max-old-space-size=8192 ./build/server.js",
|
|
"start:local": "cross-env node --max-old-space-size=8192 ./build/server.js",
|
|
"typecheck": "tsc -p ./tsconfig.check.json",
|
|
"db:seed": "node prisma/seed.js",
|
|
"db:seed:local": "ts-node prisma/seed.ts",
|
|
"generate:sourcemaps": "remix build --sourcemap",
|
|
"clean:sourcemaps": "run-s clean:sourcemaps:*",
|
|
"clean:sourcemaps:public": "rimraf ./build/**/*.map",
|
|
"clean:sourcemaps:build": "rimraf ./public/build/**/*.map",
|
|
"storybook": "storybook dev -p 6006 --no-open",
|
|
"build-storybook": "storybook build"
|
|
},
|
|
"eslintIgnore": [
|
|
"/node_modules",
|
|
"/build",
|
|
"/public/build"
|
|
],
|
|
"dependencies": {
|
|
"@aws-sdk/client-sqs": "^3.445.0",
|
|
"@codemirror/autocomplete": "^6.3.1",
|
|
"@codemirror/commands": "^6.1.2",
|
|
"@codemirror/lang-javascript": "^6.1.1",
|
|
"@codemirror/lang-json": "^6.0.1",
|
|
"@codemirror/language": "^6.3.1",
|
|
"@codemirror/lint": "^6.4.2",
|
|
"@codemirror/search": "^6.2.3",
|
|
"@codemirror/state": "^6.1.3",
|
|
"@codemirror/view": "^6.5.0",
|
|
"@conform-to/react": "^0.6.1",
|
|
"@conform-to/zod": "^0.6.1",
|
|
"@headlessui/react": "^1.7.8",
|
|
"@heroicons/react": "^2.0.12",
|
|
"@highlight-run/node": "^3.1.0",
|
|
"@highlight-run/react": "^3.2.0",
|
|
"@lezer/highlight": "^1.1.6",
|
|
"@radix-ui/react-alert-dialog": "^1.0.4",
|
|
"@radix-ui/react-dialog": "^1.0.3",
|
|
"@radix-ui/react-label": "^2.0.1",
|
|
"@radix-ui/react-popover": "^1.0.5",
|
|
"@radix-ui/react-radio-group": "^1.1.3",
|
|
"@radix-ui/react-select": "^1.2.1",
|
|
"@radix-ui/react-slider": "^1.1.2",
|
|
"@radix-ui/react-switch": "^1.0.3",
|
|
"@radix-ui/react-tabs": "^1.0.3",
|
|
"@radix-ui/react-tooltip": "^1.0.5",
|
|
"@remix-run/express": "2.1.0",
|
|
"@remix-run/node": "2.1.0",
|
|
"@remix-run/react": "2.1.0",
|
|
"@remix-run/serve": "2.1.0",
|
|
"@remix-run/server-runtime": "2.1.0",
|
|
"@remix-run/v1-meta": "^0.1.3",
|
|
"@tabler/icons-react": "^2.39.0",
|
|
"@tailwindcss/container-queries": "^0.1.1",
|
|
"@team-plain/typescript-sdk": "^3.5.0",
|
|
"@trigger.dev/billing": "^1.0.10",
|
|
"@trigger.dev/companyicons": "^1.5.32",
|
|
"@trigger.dev/core": "workspace:*",
|
|
"@trigger.dev/core-backend": "workspace:*",
|
|
"@trigger.dev/database": "workspace:*",
|
|
"@trigger.dev/sdk": "workspace:*",
|
|
"@types/pg": "8.6.6",
|
|
"@uiw/react-codemirror": "^4.19.5",
|
|
"@whatwg-node/fetch": "^0.9.14",
|
|
"class-variance-authority": "^0.5.2",
|
|
"clsx": "^1.2.1",
|
|
"compression": "^1.7.4",
|
|
"cron-parser": "^4.7.1",
|
|
"cross-env": "^7.0.3",
|
|
"cuid": "^2.1.8",
|
|
"emails": "workspace:*",
|
|
"express": "^4.18.1",
|
|
"framer-motion": "^10.12.11",
|
|
"graphile-worker": "^0.13.0",
|
|
"highlight.run": "^7.3.4",
|
|
"humanize-duration": "^3.27.3",
|
|
"intl-parse-accept-language": "^1.0.0",
|
|
"ioredis": "^5.3.2",
|
|
"isbot": "^3.6.5",
|
|
"jsonpointer": "^5.0.1",
|
|
"lodash.omit": "^4.5.0",
|
|
"lucide-react": "^0.229.0",
|
|
"marked": "^4.0.18",
|
|
"morgan": "^1.10.0",
|
|
"nanoid": "^3.3.4",
|
|
"ohash": "^1.1.3",
|
|
"postcss-import": "^14.1.0",
|
|
"posthog-js": "^1.83.0",
|
|
"posthog-node": "^3.1.1",
|
|
"prism-react-renderer": "^1.3.5",
|
|
"prismjs": "^1.29.0",
|
|
"random-words": "^2.0.0",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-hotkeys-hook": "^4.4.1",
|
|
"react-use": "^17.4.0",
|
|
"recharts": "^2.8.0",
|
|
"remix-auth": "^3.6.0",
|
|
"remix-auth-email-link": "2.0.2",
|
|
"remix-auth-github": "^1.6.0",
|
|
"remix-typedjson": "0.3.1",
|
|
"remix-utils": "^7.1.0",
|
|
"semver": "^7.5.0",
|
|
"simple-oauth2": "^5.0.0",
|
|
"simplur": "^3.0.1",
|
|
"slug": "^6.0.0",
|
|
"sonner": "^1.0.3",
|
|
"sqs-consumer": "^7.4.0",
|
|
"tailwind-merge": "^1.12.0",
|
|
"tailwind-scrollbar-hide": "^1.1.7",
|
|
"tailwindcss-animate": "^1.0.5",
|
|
"tiny-invariant": "^1.2.0",
|
|
"ulid": "^2.3.0",
|
|
"zod": "3.22.3",
|
|
"zod-error": "1.5.0",
|
|
"zod-validation-error": "^1.5.0"
|
|
},
|
|
"devDependencies": {
|
|
"@remix-run/dev": "2.1.0",
|
|
"@remix-run/eslint-config": "2.1.0",
|
|
"@remix-run/testing": "^2.1.0",
|
|
"@storybook/addon-backgrounds": "^7.0.7",
|
|
"@storybook/addon-docs": "^7.0.12",
|
|
"@storybook/addon-essentials": "^7.0.7",
|
|
"@storybook/addon-interactions": "^7.0.7",
|
|
"@storybook/addon-links": "^7.0.7",
|
|
"@storybook/addon-styling": "^1.0.5",
|
|
"@storybook/addon-viewport": "^7.0.7",
|
|
"@storybook/blocks": "^7.0.7",
|
|
"@storybook/react": "^7.0.7",
|
|
"@storybook/react-webpack5": "^7.0.7",
|
|
"@storybook/testing-library": "^0.0.14-next.2",
|
|
"@swc/core": "^1.3.4",
|
|
"@swc/helpers": "^0.4.11",
|
|
"@tailwindcss/forms": "^0.5.3",
|
|
"@tailwindcss/typography": "^0.5.9",
|
|
"@total-typescript/ts-reset": "^0.4.2",
|
|
"@trigger.dev/tailwind-config": "workspace:*",
|
|
"@types/bcryptjs": "^2.4.2",
|
|
"@types/compression": "^1.7.2",
|
|
"@types/eslint": "^8.4.6",
|
|
"@types/express": "^4.17.13",
|
|
"@types/humanize-duration": "^3.27.1",
|
|
"@types/json-query": "^2.2.3",
|
|
"@types/lodash.omit": "^4.5.7",
|
|
"@types/marked": "^4.0.3",
|
|
"@types/morgan": "^1.9.3",
|
|
"@types/node": "^18.11.15",
|
|
"@types/node-fetch": "^2.6.2",
|
|
"@types/prismjs": "^1.26.0",
|
|
"@types/qs": "^6.9.7",
|
|
"@types/react": "18.2.17",
|
|
"@types/react-dom": "18.2.7",
|
|
"@types/semver": "^7.3.13",
|
|
"@types/simple-oauth2": "^5.0.4",
|
|
"@types/slug": "^5.0.3",
|
|
"@types/tar": "^6.1.4",
|
|
"@typescript-eslint/eslint-plugin": "^5.59.6",
|
|
"@typescript-eslint/parser": "^5.59.6",
|
|
"autoprefixer": "^10.4.13",
|
|
"esbuild": "^0.15.10",
|
|
"eslint": "^8.24.0",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"npm-run-all": "^4.1.5",
|
|
"postcss": "^8.4.21",
|
|
"prettier": "^2.8.8",
|
|
"prettier-plugin-tailwindcss": "^0.3.0",
|
|
"prop-types": "^15.8.1",
|
|
"rimraf": "^3.0.2",
|
|
"storybook": "^7.0.7",
|
|
"storybook-addon-designs": "7.0.0-beta.2",
|
|
"storybook-addon-variants": "^0.2.0",
|
|
"tailwind-scrollbar": "^3.0.1",
|
|
"tailwindcss": "3.3.2",
|
|
"ts-node": "^10.7.0",
|
|
"tsconfig-paths": "^3.14.1",
|
|
"typescript": "^5.1.6"
|
|
},
|
|
"engines": {
|
|
"node": ">=16.0.0"
|
|
}
|
|
} |