-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 957 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 957 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": "ask-js",
"version": "2025.8.13",
"author": "blueb",
"license": "AGPL-3.0-or-later",
"type": "module",
"workspaces": [
"packages/frontend",
"packages/backend"
],
"scripts": {
"start": "pnpm --filter backend start",
"build": "pnpm --filter=frontend build && pnpm --filter=backend build",
"build-be": "pnpm --filter=backend build",
"build-fe": "pnpm --filter=frontend build",
"dev": "pnpm build && npm-run-all --parallel dev-fe dev-be",
"dev-be": "pnpm --filter=backend dev",
"dev-fe": "pnpm --filter=frontend dev",
"migration:apply": "pnpm --filter backend migrate",
"migration:revert": "pnpm --filter backend revert",
"migration:generate": "pnpm --filter backend generateMigration",
"format": "prettier --config .prettierrc --ignore-path .prettierignore '**' --write"
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"prettier": "^3.5.3",
"prettier-plugin-svelte": "^3.3.3",
"typescript": "^5.8.2"
}
}