-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.62 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.62 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
{
"name": "jslibs",
"version": "1.0.0",
"description": "A collection of libraries a maintain for my personal web stack.",
"license": "MIT",
"private": true,
"type": "module",
"author": {
"name": "spuxx",
"email": "hi@spuxx.dev",
"url": "https://spuxx.dev"
},
"homepage": "https://github.com/spuxx-dev/spuxx-dev-mono",
"packageManager": "pnpm@9.6.0",
"scripts": {
"dev:constellation": "cd apps/constellation-dashboard && pnpm dev",
"dev:astro": "cd apps/spuxx-astro && pnpm dev",
"dev:client": "concurrently 'pnpm dev:api' 'cd apps/spuxx-client && pnpm dev'",
"dev:api": "pnpm db:start && cd apps/spuxx-api && pnpm dev",
"debug:api": "pnpm db:start && cd apps/spuxx-api && pnpm debug",
"db:start": "cd ./local-services/database && mkdir -p .data && docker compose down && docker compose up -d --wait --remove-orphans",
"db:stop": "cd ./local-services/database && docker compose down",
"db:reset": "cd ./local-services/database && docker compose down && rm -rf .data",
"test": "pnpm -r test",
"test:vitest": "pnpm -r test:vitest",
"check": "pnpm types && pnpm lint && pnpm -r check",
"types": "pnpm -r types",
"lint": "eslint . --ext ts,tsx && prettier --check ./apps",
"format": "prettier --write ./apps",
"build": "pnpm -r build"
},
"devDependencies": {
"@eslint/js": "9.39.4",
"@eslint/json": "1.0.1",
"@eslint/markdown": "7.5.1",
"concurrently": "9.2.1",
"eslint": "9.39.1",
"globals": "17.4.0",
"prettier": "3.6.2",
"prettier-plugin-astro": "0.14.1",
"release-please": "17.3.0",
"typescript-eslint": "8.57.0"
}
}