rallly/package.json
2023-03-23 12:20:51 +00:00

30 lines
737 B
JSON

{
"name": "rallly",
"private": true,
"version": "2.6.0",
"scripts": {
"dev": "dotenv -- turbo dev",
"start": "turbo run start --filter=@rallly/web...",
"build": "turbo run build --filter=@rallly/web...",
"db:deploy": "prisma migrate deploy",
"db:generate": "turbo db:generate",
"db:migrate": "prisma migrate dev",
"test": "yarn workspace @rallly/web test",
"lint": "turbo lint",
"lint:tsc": "turbo lint:tsc",
"release": "./scripts/create-release.sh"
},
"workspaces": [
"apps/*",
"packages/*"
],
"devDependencies": {
"dotenv-cli": "^7.1.0",
"prettier": "^2.8.4",
"turbo": "^1.8.5"
},
"engines": {
"node": "16.x"
},
"packageManager": "yarn@1.22.19"
}