53 lines
1.5 KiB
JSON
53 lines
1.5 KiB
JSON
{
|
|
"name": "@probo/console",
|
|
"version": "0.0.1",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "npx node --env-file .env.development scripts/esbuild.mjs watch",
|
|
"build": "npx node --env-file .env.production scripts/esbuild.mjs",
|
|
"relay": "npx relay-compiler --output quiet-with-errors",
|
|
"relay:watch": "npx relay-compiler --output quiet-with-errors --watch",
|
|
"lint": "eslint src --ext .ts,.tsx"
|
|
},
|
|
"dependencies": {
|
|
"posthog-js": "^1.215.1",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1",
|
|
"react-helmet-async": "^2.0.5",
|
|
"react-relay": "^18.2.0",
|
|
"react-router": "^7.1.5",
|
|
"relay-runtime": "^18.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.26.7",
|
|
"@babel/preset-env": "^7.26.7",
|
|
"@babel/preset-typescript": "^7.26.0",
|
|
"@deanc/esbuild-plugin-postcss": "^1.0.2",
|
|
"@probo/tsconfig": "^0.0.1",
|
|
"@tailwindcss/postcss": "^4.0.2",
|
|
"@types/babel-core": "^6.25.10",
|
|
"@types/node": "^22.13.0",
|
|
"@types/react": "^18.3.18",
|
|
"@types/react-dom": "^18.3.5",
|
|
"@types/react-relay": "^18.2.0",
|
|
"@types/relay-runtime": "^18.2.5",
|
|
"autoprefixer": "^10.4.20",
|
|
"babel-plugin-relay": "^18.2.0",
|
|
"esbuild": "^0.24.2",
|
|
"relay-compiler": "^18.2.0",
|
|
"tailwindcss": "^4.0.2",
|
|
"typescript": "^5.7.3"
|
|
},
|
|
"relay": {
|
|
"src": "src",
|
|
"language": "typescript",
|
|
"schema": "../../pkg/api/console/v1/schema.graphql",
|
|
"noFutureProofEnums": true,
|
|
"excludes": [
|
|
"**/node_modules/**",
|
|
"**/__mocks__/**",
|
|
"**/__generated__/**"
|
|
]
|
|
}
|
|
}
|