-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 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
45
46
47
48
49
50
51
52
53
54
55
{
"name": "legalviz-eu",
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"node": ">=22.12"
},
"scripts": {
"dev": "node scripts/dev.js",
"dev:web": "vite",
"dev:api": "npm --prefix backend start",
"dev:api:watch": "npm --prefix backend run dev",
"build": "vite build && node scripts/copy-404.js && node scripts/generate-prerendered-law-pages.js && node scripts/generate-sitemap.js",
"lint": "eslint .",
"test": "npm run test:web && npm run test:api",
"test:web": "vitest run",
"test:api": "npm --prefix backend test",
"test:watch": "vitest",
"preview": "vite preview"
},
"dependencies": {
"better-sqlite3": "^12.11.1",
"dompurify": "^3.4.12",
"framer-motion": "^12.23.24",
"lucide-react": "^0.552.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.9.6",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@eslint/js": "^9.36.0",
"@tailwindcss/vite": "^4.1.16",
"@types/react": "^19.1.16",
"@types/react-dom": "^19.1.9",
"@vitejs/plugin-react": "^5.0.4",
"autoprefixer": "^10.4.21",
"eslint": "^9.36.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.22",
"fake-indexeddb": "^6.2.5",
"globals": "^16.4.0",
"jsdom": "^29.0.0",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.16",
"vite": "^7.1.7",
"vite-plugin-pwa": "^1.2.0",
"vitest": "^4.1.0"
}
}