-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.23 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.23 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
{
"name": "file-accessibility-audit",
"version": "1.16.2",
"private": true,
"type": "module",
"scripts": {
"dev": "tsx scripts/dev.ts",
"dev:api": "kill-port 5103 && pnpm --filter api dev",
"dev:web": "kill-port 5102 && pnpm --filter web dev",
"build": "pnpm --filter api build && pnpm --filter web build",
"test": "tsx scripts/test.ts",
"test:api": "pnpm --filter api test",
"test:web": "pnpm --filter web test",
"test:scoring": "pnpm --filter api test:scoring",
"start:all": "kill-port 5103 5102 && sleep 1 && echo '\\n[start:all] API → http://localhost:5103 | WEB → http://localhost:5102\\n' && PORT=5103 pnpm --filter api start & PORT=5102 pnpm --filter web start & wait",
"clean": "rm -rf apps/web/.nuxt apps/web/.output apps/web/node_modules/.vite apps/api/dist node_modules/.cache && echo 'Cleaned all caches'",
"rebrand": "tsx scripts/rebrand.ts",
"a11y-audit": "cd apps/cli && tsx src/index.ts publist"
},
"engines": {
"node": ">=22"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"esbuild",
"@parcel/watcher",
"vue-demi"
]
},
"devDependencies": {
"kill-port": "^2.0.1",
"sharp": "^0.34.5",
"tsx": "^4.21.0"
}
}