-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.72 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
{
"name": "aap-postmottak",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "vitest --run",
"lint": "next lint",
"gentypes": "openapi-typescript http://localhost:8080/openapi.json -o lib/types/schema.d.ts",
"gentypes:behandlingsflyt": "openapi-typescript http://localhost:8080/openapi.json -o lib/types/behandlingsflyt.schema.d.ts",
"prepare": "husky"
},
"prettier": "@navikt/aap-felles-prettier",
"dependencies": {
"@navikt/aap-felles-css": "^4.0.1",
"@navikt/aap-felles-react": "^4.0.1",
"@navikt/aap-felles-utils": "^4.0.1",
"@navikt/aksel-icons": "^7.8.0",
"@navikt/ds-css": "^7.8.0",
"@navikt/ds-react": "^7.8.0",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/api-logs": "^0.57.0",
"@opentelemetry/instrumentation": "^0.57.0",
"@opentelemetry/resources": "^1.30.0",
"@opentelemetry/sdk-logs": "^0.57.0",
"@opentelemetry/sdk-metrics": "^1.30.0",
"@opentelemetry/sdk-trace-base": "^1.30.0",
"@vercel/otel": "^1.10.0",
"next": "15.1.1",
"react": "19.0.0-rc-66855b96-20241106",
"react-dom": "19.0.0-rc-66855b96-20241106"
},
"devDependencies": {
"@navikt/aap-behandlingsflyt-typescript-types": "^0.0.197",
"@navikt/aap-felles-prettier": "^4.0.1",
"@navikt/aap-postmottak-backend-typescript-types": "^0.0.53",
"@navikt/eslint-config-aap": "^1.9.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.2",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^20.16.7",
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"@vitejs/plugin-react": "^4.3.3",
"@vitest/coverage-v8": "^2.1.3",
"eslint": "^8.57.1",
"eslint-config-next": "15.0.3",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-react": "^7.36.1",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^9.1.7",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.11",
"openapi-typescript": "^7.4.4",
"prettier": "^3.3.3",
"typescript": "^5.7.2",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.1.3",
"vitest-fetch-mock": "^0.3.0"
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix",
"*.{js,ts,tsx,css,md}": "prettier --write"
},
"packageManager": "[email protected]",
"resolutions": {
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]"
}
}