-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.05 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.05 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
{
"name": "webapp",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"typecheck": "tsc --noEmit",
"dev": "vite --port=3001",
"build": "vite build",
"serve": "vite preview",
"start": "vite",
"test": "vitest",
"e2e": "playwright test",
"e2e:debug": "playwright test --headed --debug",
"e2e:ui": "playwright test --ui"
},
"devDependencies": {
"@playwright/test": "^1.55.0",
"@types/papaparse": "^5.5.2",
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3",
"@types/sql.js": "^1.4.9",
"@vitejs/plugin-react": "^5.1.2",
"@vitest/ui": "^3.2.4",
"prettier": "^3.7.4",
"vite": "^7.3.1",
"vite-tsconfig-paths": "^6.0.4",
"vitest": "^3.2.4"
},
"dependencies": {
"@tanstack/react-query": "^5.90.16",
"fts5-sql-bundle": "^1.0.2",
"google-palette": "^1.1.1",
"papaparse": "^5.5.3",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"use-navigation-api": "^0.5.0"
},
"prettier": {
"printWidth": 100,
"bracketSameLine": true
}
}