mirror of
https://github.com/lukevella/rallly.git
synced 2025-04-29 02:06:34 +02:00
25 lines
714 B
JSON
25 lines
714 B
JSON
{
|
|
"name": "@rallly/billing",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"exports": {
|
|
".": "./src/index.ts",
|
|
"./*": "./src/*.ts"
|
|
},
|
|
"scripts": {
|
|
"checkout-expiry": "dotenv -e ../../.env -- tsx ./src/scripts/checkout-expiry.ts",
|
|
"subscription-data-sync": "dotenv -e ../../.env -- tsx ./src/scripts/subscription-data-sync.ts",
|
|
"sync-payment-methods": "dotenv -e ../../.env -- tsx ./src/scripts/sync-payment-methods.ts",
|
|
"type-check": "tsc --pretty --noEmit",
|
|
"lint": "eslint ./src"
|
|
},
|
|
"dependencies": {
|
|
"@radix-ui/react-radio-group": "^1.2.3",
|
|
"@rallly/ui": "*",
|
|
"next": "*",
|
|
"stripe": "^13.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@rallly/eslint-config": "*"
|
|
}
|
|
}
|