-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (37 loc) · 1.03 KB
/
package.json
File metadata and controls
40 lines (37 loc) · 1.03 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
{
"name": "stack",
"version": "1.0.0",
"description": "",
"license": "ISC",
"author": "",
"keywords": [],
"packageManager": "pnpm@9.12.0",
"engines": {
"node": "20.x"
},
"scripts": {
"postinstall": "prisma generate --schema=apps/api/prisma/schema.prisma",
"build": "pnpm --filter ./packages/types build && pnpm --filter ./apps/api build",
"build:types": "pnpm --filter ./packages/types build",
"build:api": "pnpm --filter ./apps/api build",
"db:generate": "prisma generate --schema=apps/api/prisma/schema.prisma",
"test": "echo \"Error: no test specified\" && exit 1"
}
,
"devDependencies": {
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.7.1",
"prisma": "^6.18.0",
"turbo": "^2.5.8",
"typescript": "^5.9.3"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.930.0",
"@aws-sdk/s3-request-presigner": "^3.930.0",
"@prisma/client": "^6.18.0",
"@radix-ui/react-slot": "^1.2.3",
"date-fns": "^4.1.0"
}
}