-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.36 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": "openxiv",
"private": true,
"version": "0.0.0",
"description": "Science social + preprint App View on AT Protocol",
"type": "module",
"packageManager": "pnpm@9.12.3",
"engines": {
"node": ">=22"
},
"scripts": {
"build": "pnpm -r --filter=./packages/* build && pnpm -r --filter=./apps/* build",
"dev": "pnpm --filter @openxiv/api dev",
"dev:web": "pnpm --filter @openxiv/web dev",
"dev:workers": "pnpm --filter @openxiv/api dev:worker",
"dev:all": "pnpm -r --parallel --filter=./apps/* dev",
"typecheck": "pnpm -r typecheck",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "pnpm -r --filter=!@openxiv/e2e test",
"test:e2e": "pnpm --filter @openxiv/e2e test",
"format": "prettier --write .",
"format:check": "prettier --check .",
"db:generate": "pnpm --filter @openxiv/db generate",
"db:migrate": "pnpm --filter @openxiv/db migrate",
"clean": "pnpm -r exec rimraf dist .turbo .astro"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"prettier-plugin-astro": "^0.14.1",
"rimraf": "^6.0.1",
"typescript": "^5.7.2"
},
"license": "AGPL-3.0-or-later"
}