-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 860 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 860 Bytes
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
{
"name": "readr-v2",
"version": "2.0.0",
"private": true,
"workspaces": [
"server",
"client"
],
"scripts": {
"dev": "npm-run-all --parallel dev:server dev:client",
"dev:server": "npm --workspace server run dev",
"dev:client": "npm --workspace client run dev",
"build": "npm-run-all build:server build:client",
"build:server": "npm --workspace server run build",
"build:client": "npm --workspace client run build",
"format": "prettier --write .",
"lint": "eslint .",
"test:db:migrate": "dotenv -e .env.test -- prisma migrate deploy",
"test:integration": "dotenv -e .env.test -- vitest run --config vitest.config.ts"
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"prettier": "^3.1.0"
},
"dependencies": {
"hono": "^4.12.9",
"prisma": "^7.6.0",
"undici": "^7.24.6"
}
}