-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"name": "dillydally-monorepo",
"version": "1.0.0",
"private": true,
"type": "module",
"packageManager": "npm@10.9.3",
"workspaces": [
"dillydally-frontend",
"dillydally-express"
],
"scripts": {
"dev": "concurrently --names \"convex,frontend,backend\" --prefix-colors \"blue,green,yellow\" \"npx convex dev\" \"npm run dev --workspace=dillydally-frontend\" \"npm run dev --workspace=dillydally-express\"",
"build": "npm run codegen && sh -c '[ -n \"$VERCEL\" ] && npm run install-rollup || true' && turbo build && npm run postbuild",
"install-rollup": "npm install --workspace=dillydally-frontend --include=optional @rollup/rollup-linux-x64-gnu @esbuild/linux-x64 || true",
"postbuild": "if [ -d dillydally-frontend/dist ]; then rm -rf dist && cp -r dillydally-frontend/dist dist && echo '✓ Copied dist to root'; else echo '✗ Build output not found' && exit 1; fi",
"codegen": "npx convex codegen",
"start": "concurrently --names \"convex,frontend,backend\" --prefix-colors \"blue,green,yellow\" \"npx convex dev\" \"npm run preview --workspace=dillydally-frontend\" \"npm run start --workspace=dillydally-express\"",
"install-all": "npm install && npm install --workspaces"
},
"devDependencies": {
"concurrently": "^8.2.2",
"turbo": "^2.6.0"
},
"dependencies": {
"@auth/core": "^0.37.0",
"@convex-dev/auth": "^0.0.90",
"convex": "^1.17.2"
}
}