-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.72 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.72 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
{
"name": "talos",
"version": "0.0.1",
"private": true,
"packageManager": "pnpm@10.32.1+sha512.a706938f0e89ac1456b6563eab4edf1d1faf3368d1191fc5c59790e96dc918e4456ab2e67d613de1043d2e8c81f87303e6b40d4ffeca9df15ef1ad567348f2be",
"scripts": {
"dev": "concurrently -n \"packages,web\" -c \"cyan.dim,green.bold\" --prefix \"[{name}]\" --prefix-length 10 \"pnpm run dev:packages\" \"pnpm run dev:web\"",
"dev:packages": "pnpm --filter './packages/**' --parallel exec npm run dev",
"dev:web": "pnpm --filter './apps/web' run dev",
"build": "turbo run build",
"start": "cd apps/web && NODE_ENV=production tsx server.ts",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"typecheck:watch": "tsc --build --watch",
"test": "vitest run",
"test:watch": "vitest watch",
"test:cli": "vitest run --config=vitest.cli.config.ts",
"test:all": "vitest run && pnpm run test:cli",
"test:ui": "cd apps/web && vitest --ui",
"clean": "turbo run clean && rm -rf node_modules .turbo packages/*/dist",
"cli:build": "cd packages/cli && pnpm run build",
"cli:link": "pnpm run cli:build && pnpm link --global && cd packages/cli && pnpm link --global",
"cli:unlink": "pnpm remove --global talos-cli talos",
"publish": "pnpm run cli:build && cd packages/cli && pnpm publish --access public",
"test:stream": "node test-prd-stream.mjs"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@types/node": "^22.10.5",
"autoprefixer": "^10.4.20",
"concurrently": "^9.2.1",
"eslint": "^9.17.0",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17",
"tsup": "^8.4.0",
"tsx": "^4.21.0",
"turbo": "^2.8.12",
"typescript": "^5.7.2",
"vitest": "^3.2.4"
}
}