-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.04 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
{
"name": "pyezza",
"private": true,
"workspaces": [
"packages/*",
"apps/*",
"scripts/*"
],
"prisma": {
"schema": "packages/database/schema.prisma"
},
"scripts": {
"dev": "yarn workspace @repo/nextjs dev",
"start": "yarn workspace @repo/nextjs start",
"build:packages": "yarn workspace @repo/database build",
"db:deploy": "yarn workspace @repo/database db:deploy",
"db:generate": "yarn workspace @repo/database db:generate",
"test": "yarn workspaces run test",
"lint": "yarn workspaces run lint",
"migrate": "cd packages/database && npx prisma format && npx prisma migrate dev",
"build": "yarn db:generate && yarn db:deploy && cd apps/nextjs && yarn build"
},
"devDependencies": {
"eslint": "^8.48.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"packageManager": "yarn@4.6.0",
"dependencies": {
"@tabler/icons-react": "^3.29.0",
"clsx": "^2.1.1",
"motion": "^12.0.1",
"tailwind-merge": "^2.6.0"
},
"resolutions": {
"dotenv-cli": "^7.4.1"
}
}