-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 2.06 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 2.06 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
{
"name": "tsfullstack",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"translate-md": "tsx scripts/translate-md.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "turbo run build",
"build:autoload": "cd modules/module-autoload && pnpm automate",
"build:optimized": "NODE_OPTIONS=\"--max-old-space-size=4096\" turbo run build --parallel=true",
"build:perf": "node --max-old-space-size=8192 --trace-warnings scripts/perf-build.js",
"release": "pnpm install && pnpm tsc && pnpm --recursive --parallel run build",
"release:ci": "pnpm install && pnpm tsc && pnpm --recursive --parallel run build:lib",
"build:backend": "cd apps/backend && pnpm build:lib",
"build:frontend": "cd apps/website-frontend && pnpm build",
"build:extension": "cd apps/InfoFlow && pnpm build",
"build:modules": "cd modules/module-template && pnpm build",
"build:cache": "turbo run build --force=false --cache=true",
"build:clean": "turbo run clean && pnpm store prune",
"modules:build": "cd packages/module-loader && pnpm build",
"modules:tsc": "cd packages/module-loader && pnpm tsc",
"modules:run": "cd packages/module-loader && node dist/cli.js run",
"modules:install": "cd packages/module-loader && node dist/cli.js install",
"modules:list": "cd packages/module-loader && node dist/cli.js list",
"modules:watch": "cd packages/module-loader && node dist/cli.js run --watch",
"analyze:bundle": "cd apps/website-frontend && pnpm build --mode analyze",
"perf:install": "time pnpm install --frozen-lockfile=false --prefer-offline",
"perf:build": "time pnpm build:optimized"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^25.3.3",
"tsx": "^4.21.0",
"turbo": "^2.8.12"
},
"pnpm": {
"overrides": {
"vite": "npm:rolldown-vite@7.1.12"
}
},
"packageManager": "pnpm@10.26.0+sha512.3b3f6c725ebe712506c0ab1ad4133cf86b1f4b687effce62a9b38b4d72e3954242e643190fc51fa1642949c735f403debd44f5cb0edd657abe63a8b6a7e1e402"
}