-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.16 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"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": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"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": {
"c8": "^10.1.3",
"eslint": "^8.48.0",
"prettier": "^3.0.3",
"tsx": "^4.19.3",
"typescript": "^5.2.2",
"vitest": "^3.0.9"
},
"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"
}
}