-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 929 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 929 Bytes
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
{
"name": "webbase-iii",
"version": "1.3.0",
"description": "dBASE III is back. In your browser. USE customers like it's 1984.",
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently \"vite\" \"tsx watch server/index.ts\"",
"build": "tsc --noEmit && vite build",
"serve": "npm run build && tsx server/index.ts",
"test": "vitest run --config vitest.config.ts",
"clean:data": "node scripts/clean-data.mjs",
"coverage": "vitest run --config vitest.config.ts --coverage"
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.9.2",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "^4.1.10",
"concurrently": "^10.0.3",
"tsx": "^4.22.4",
"typescript": "^5.4.5",
"vite": "^5.2.12",
"vitest": "^4.1.8"
},
"dependencies": {
"better-sqlite3": "^12.10.0",
"ws": "^8.21.0"
}
}