MeshiTrack/package.json

30 lines
769 B
JSON

{
"name": "meshitrack",
"private": true,
"type": "module",
"packageManager": "npm@11.6.2",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"lint": "turbo run lint",
"lint-fix": "turbo run lint-fix",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"test:cov": "turbo run test:cov",
"typecheck": "turbo run typecheck",
"clean": "turbo run clean",
"seed": "npm run seed --workspace=packages/api"
},
"devDependencies": {
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"prettier": "^3.8.1",
"turbo": "^2.8.20",
"typescript": "^6.0.2",
"typescript-eslint": "^8.57.2"
}
}