-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.29 KB
/
package.json
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "personal-apps",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint -- --max-warnings 20",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"db:migrate": "cd packages/prisma-db && npx prisma migrate dev --name init",
"db:generate": "cd packages/prisma-db && npx prisma generate",
"build-deploy-docs": "cd ./apps/docs && npm run deploy-s3 ",
"build-dashboard-app": "cd ./apps/dashboard-app && npm run build",
"start-dashboard-app": "cd ./apps/dashboard-app && npm run start",
"start-scheduler": "cd ./apps/scheduler && npm run dev",
"start-worker": "cd ./apps/worker && npm run dev",
"start-processor": "cd ./apps/processor && npm run dev"
},
"exports": {
"./zod": "./src/index.ts"
},
"devDependencies": {
"@repo/eslint-config": "*",
"@repo/typescript-config": "*",
"prettier": "^3.2.5",
"turbo": "latest"
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"fs": "^0.0.1-security",
"fumadocs-mdx": "^11.1.1",
"install": "^0.13.0",
"next": "^15.0.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwindcss-animate": "^1.0.7",
"usehooks-ts": "^3.1.0"
}
}