-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.41 KB
/
package.json
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "vektor-frontend",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": ">=20.12.2"
},
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"test:vitest": "vitest run",
"test:vitest:watch": "vitest watch",
"e2e:test": "exec playwright test",
"e2e:test:ui": "exec playwright test --ui",
"e2e:show-report": "exec playwright show-report",
"e2e:install": "exec playwright install",
"check": "biome check ./ --apply",
"lint": "biome lint ./ --apply",
"format": "biome format ./ --apply"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-brands-svg-icons": "^6.5.2",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@radix-ui/react-accordion": "^1.2.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-separator": "^1.1.0",
"@types/node": "^20.12.2",
"@types/react": "^18.2.79",
"@types/react-dom": "^18.2.25",
"autoprefixer": "^10.4.19",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"daisyui": "^4.0.0",
"dayjs": "^1.11.10",
"lucide-react": "^0.469.0",
"node": "^20.12.2",
"norwegian-utils": "^0.4.1",
"postcss": "^8.4.38",
"postcss-import": "^16.0.0",
"quill-image-resize-module-react": "^3.0.0",
"quill-image-uploader": "^1.3.0",
"react": "^18.2.0",
"react-countup": "^6.5.3",
"react-dom": "^18.2.0",
"react-hook-form": "^7.51.3",
"react-quill": "^2.0.0",
"react-remove-scroll": "^2.5.9",
"react-router-dom": "^7.0.0",
"react-tailwindcss-datepicker": "^1.6.6",
"react-visibility-sensor": "^5.1.1",
"tailwind-merge": "^2.5.3",
"tailwindcss": "^3.4.3",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.4.5",
"vaul": "^1.0.0",
"vite": "^6.0.0",
"web-vitals": "^4.2.3"
},
"devDependencies": {
"@playwright/test": "^1.43.0",
"@biomejs/biome": "1.9.4",
"@testing-library/dom": "^10.0.0",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@vitejs/plugin-react": "^4.2.1",
"vitest": "^2.0.0"
}
}