-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.1 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.1 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
{
"name": "zero-point",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev:blog": "pnpm --filter blog run dev",
"dev:admin": "pnpm --filter admin run dev",
"build:blog": "pnpm --filter blog run build",
"build:admin": "pnpm --filter admin run build",
"build": "pnpm build:blog && pnpm build:admin",
"clean": "node scripts/clean.mjs",
"reset": "pnpm clean:all && pnpm install",
"lint": "oxlint . --fix -D correctness --ignore-path .gitignore",
"format": "prettier . --write",
"db:migrate": "pnpm --filter blog exec tsx scripts/runMigrations.ts",
"db:seed": "pnpm --filter blog exec tsx scripts/runSeeds.ts",
"db:reset": "pnpm run db:migrate && pnpm run db:seed",
"preview": "pnpm --filter blog run preview"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.22.0",
"devDependencies": {
"npm-run-all2": "^8.0.4",
"oxlint": "~1.29.0",
"prettier": "^3.6.2",
"rimraf": "^6.1.0",
"sass": "^1.94.1",
"unplugin-auto-import": "^20.2.0",
"unplugin-vue-components": "^30.0.0"
}
}