-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
92 lines (92 loc) · 3.1 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
90
91
92
{
"name": "sosialhjelp-innsyn",
"version": "0.1.0",
"private": true,
"homepage": "/sosialhjelp/innsyn/",
"dependencies": {
"@navikt/aksel-icons": "^6.13.0",
"@navikt/ds-css": "^6.13.0",
"@navikt/ds-icons": "^3.4.3",
"@navikt/ds-react": "^6.13.0",
"@navikt/nav-dekoratoren-moduler": "^2.1.6",
"@navikt/next-api-proxy": "^4.1.3",
"@navikt/next-logger": "^1.25.0",
"@navikt/oasis": "^3.4.0",
"@sentry/nextjs": "^7.110.1",
"@sentry/react": "^8.21.0",
"@sentry/tracing": "^7.114.0",
"@tanstack/react-query": "^5.51.5",
"@unleash/nextjs": "^1.4.2",
"date-fns": "^3.6.0",
"i18next": "^23.12.1",
"js-cookie": "^3.0.1",
"next": "^14.2.1",
"next-i18next": "^15.3.0",
"pino": "^9.3.2",
"react": "^18.3.1",
"react-collapse": "^5.1.0",
"react-collapsible": "^2.6.2",
"react-dom": "^18.3.1",
"react-i18next": "^15.0.0",
"react-use": "^17.5.0",
"remeda": "^1.59.0",
"styled-components": "^6.1.8"
},
"scripts": {
"dev": "next dev | pino-pretty",
"build": "next build",
"start": "next start",
"test": "jest",
"lintStaged": "lint-staged",
"lint": "next lint",
"fetch-api-docs": "curl -o ./innsyn-api.json https://digisos.ekstern.dev.nav.no/sosialhjelp/innsyn-api/v3/api-docs && prettier --write innsyn-api.json",
"fetch-api-docs-local": "curl -o ./innsyn-api.json http://localhost:8080/sosialhjelp/innsyn-api/v3/api-docs && prettier --write innsyn-api.json",
"orval": "rm -rf src/generated && orval --prettier",
"prettier": "prettier --write src/**/*.{ts,tsx,css,js}",
"tsc": "tsc",
"prepare": "husky install"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@faker-js/faker": "^8.4.1",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^16.0.0",
"@types/jest": "^29.5.12",
"@types/js-cookie": "^3.0.6",
"@types/react": "^18.3.3",
"@types/react-collapse": "^5.0.4",
"@types/react-dom": "^18.3.0",
"eslint-config-next": "^14.2.1",
"husky": "^9.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.2",
"msw": "^2.3.1",
"next-router-mock": "^0.9.13",
"orval": "^7.2.0",
"pino-pretty": "^11.2.1",
"prettier": "^3.3.3",
"typescript": "^5.5.3",
"undici": "^5.27.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css,md}": "prettier --write",
"*.{js,jsx,ts,tsx}": "next lint --max-warnings=0 src/ pages/"
},
"overrides": {
"semver": "7.5.3",
"optionator": "0.9.3"
}
}