This commit addresses the update of various npm package dependencies across multiple modules. These updates include a version bump for lucide-react from 0.368.0 to 0.372.0 and rearrangement of "@types/react" and "@kit/monitoring-core" in the 'devDependencies' section for improved organization. These updates will ensure that we're using the most recent secure releases and enhance the project maintainability.
54 lines
1.3 KiB
JSON
54 lines
1.3 KiB
JSON
{
|
|
"name": "@kit/monitoring",
|
|
"private": true,
|
|
"sideEffects": false,
|
|
"version": "0.1.0",
|
|
"scripts": {
|
|
"clean": "git clean -xdf ../.turbo node_modules",
|
|
"format": "prettier --check \"**/*.{ts,tsx}\"",
|
|
"lint": "eslint ..",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"prettier": "@kit/prettier-config",
|
|
"exports": {
|
|
"./server": "./src/server.ts",
|
|
"./instrumentation": "./src/instrumentation.ts",
|
|
"./hooks": "./src/hooks/index.ts",
|
|
"./components": "./src/components/index.ts"
|
|
},
|
|
"devDependencies": {
|
|
"@kit/baselime": "workspace:*",
|
|
"@kit/eslint-config": "workspace:*",
|
|
"@kit/monitoring-core": "workspace:*",
|
|
"@kit/prettier-config": "workspace:*",
|
|
"@kit/sentry": "workspace:*",
|
|
"@kit/tailwind-config": "workspace:*",
|
|
"@kit/tsconfig": "workspace:*",
|
|
"@types/react": "^18.2.79",
|
|
"react": "18.2.0"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^18.2.0"
|
|
},
|
|
"eslintConfig": {
|
|
"root": true,
|
|
"extends": [
|
|
"@kit/eslint-config/base",
|
|
"@kit/eslint-config/react"
|
|
]
|
|
},
|
|
"typesVersions": {
|
|
"*": {
|
|
"*": [
|
|
"src/*"
|
|
]
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@tanstack/react-table": "^8.16.0",
|
|
"next": "14.3.0-canary.7",
|
|
"tailwind-merge": "^2.3.0",
|
|
"zod": "^3.23.0"
|
|
}
|
|
}
|