-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1007 Bytes
/
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
{
"name": "@diary-spo/core",
"version": "3.1.0",
"author": "diary-spo",
"dependencies": {
"bun": "^1.1.34"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"bun-types": "^1.1.34",
"concurrently": "^9.0.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"typescript": "^5.6.3"
},
"description": "A web diary",
"keywords": [],
"license": "MIT",
"private": true,
"scripts": {
"dev:api": "cd apps/api && bun dev",
"dev:web": "cd apps/web && bun dev",
"dev:all": "concurrently \"bun dev:api\" \"bun dev:web\"",
"dev:web:preview": "cd apps/web && bun preview",
"dev:api:serve": "cd apps/api && bun serve",
"lint": "biome lint . --apply",
"format": "biome format . --write",
"checkAll": "biome check . --write --unsafe",
"build:web": "cd apps/web && bun run build",
"build:api": "cd apps/api && bun run build",
"prepare": "husky"
},
"lint-staged": {
"*": "bun run checkAll"
},
"workspaces": ["apps/*"]
}