-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.89 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
85
86
87
88
89
{
"name": "syk-inn",
"version": "0.1.0",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": "22"
},
"scripts": {
"dev": "./scripts/pre-dev.sh && next dev --turbo | pino-pretty",
"dev:redis": "docker run --name syk-inn-dev-redis -p 6379:6379 -d redis",
"build": "./scripts/pre-build.sh && next build",
"build:e2e": "./scripts/build-e2e.sh",
"start": "next start",
"start:e2e": "NEXT_PUBLIC_ASSET_PREFIX= node .next/standalone/server.js | pino-pretty",
"test": "vitest",
"lint": "next lint",
"e2e": "playwright test",
"e2e:dev": "yarn e2e --ui",
"e2e:fast": "FAST=true yarn e2e --ui",
"postinstall": "husky"
},
"dependencies": {
"@ariakit/react": "^0.4.15",
"@navikt/aksel-icons": "^7.17.0",
"@navikt/diagnosekoder": "^1.2025.0",
"@navikt/ds-css": "^7.17.0",
"@navikt/ds-react": "^7.17.0",
"@navikt/ds-tailwind": "^7.17.0",
"@navikt/next-logger": "^2.0.0",
"@navikt/oasis": "^3.7.0",
"@redis/client": "^1.6.0",
"@reduxjs/toolkit": "^2.6.0",
"@tanstack/react-query": "^5.67.1",
"@tanstack/react-query-devtools": "^5.67.1",
"@unleash/nextjs": "^1.6.1",
"clsx": "^2.1.1",
"csp-header": "^6.0.1",
"date-fns": "^4.1.0",
"fuse.js": "^7.1.0",
"html-react-parser": "^5.2.2",
"jose": "^6.0.8",
"motion": "^12.4.10",
"next": "15.2.1",
"next-logger": "^5.0.1",
"nextleton": "^0.6.1",
"node-cache": "^5.1.2",
"nuqs": "^2.4.1",
"openid-client": "^6.3.3",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"pino-roll": "^3.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-error-boundary": "^5.0.0",
"react-hook-form": "^7.54.2",
"react-redux": "^9.2.0",
"remeda": "^2.21.0",
"server-only": "^0.0.1",
"tailwind-merge": "^2.6.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@hookform/devtools": "^4.3.3",
"@navikt/eslint-config-teamsykmelding": "^7.1.0",
"@playwright/test": "1.50.1",
"@tailwindcss/postcss": "^4.0.10",
"@types/node": "^22.13.9",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"eslint": "^8.57.1",
"eslint-config-next": "15.2.1",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"tailwindcss": "^4.0.10",
"typescript": "^5.8.2",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.7"
},
"prettier": "@navikt/eslint-config-teamsykmelding/prettier",
"eslintConfig": {
"extends": [
"@navikt/eslint-config-teamsykmelding",
"next/core-web-vitals"
]
}
}