-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.53 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.53 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
44
45
46
47
48
49
50
51
{
"name": "coldpressery",
"version": "1.0.0",
"description": "Full-stack ColdPressery application monorepo",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "cd apps/backend && npm run dev",
"dev:frontend": "cd apps/frontend && npm run dev",
"build": "cd apps/backend && npm run build && cd ../frontend && npm run build",
"build:backend": "cd apps/backend && npm run build",
"build:frontend": "cd apps/frontend && npm run build",
"start": "cd apps/backend && npm run start",
"lint": "cd apps/backend && npm run lint && cd ../frontend && npm run lint",
"type-check": "cd apps/backend && npm run type-check && cd ../frontend && npm run type-check"
},
"keywords": [
"monorepo",
"full-stack",
"backend",
"frontend",
"hono",
"typescript",
"react"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.45.0",
"kill-port": "^2.0.1",
"typescript": "^5.0.0"
},
"dependencies": {
"@clerk/backend": "^2.24.0",
"@hono/clerk-auth": "^3.0.3",
"@hono/node-server": "^1.19.6",
"@prisma/adapter-pg": "^7.0.1",
"@prisma/client": "^7.0.1",
"hono": "^4.10.7",
"pg": "^8.16.3",
"svix": "^1.81.0"
}
}