-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
78 lines (78 loc) · 2.44 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": "poa-arbeidssokerregistrering",
"private": true,
"scripts": {
"dev": "next dev | pino-pretty",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "npm run lint && jest --watch",
"test:ci": "npm run lint && jest",
"prettier": "prettier --write 'src/**/*.ts' 'src/**/*.tsx' 'src/**/*.css'",
"refresh": "rm -rf node_modules && rm package-lock.json && npm i",
"prepare": "husky"
},
"dependencies": {
"@alheimsins/virkedager": "2.2.0",
"@amplitude/analytics-browser": "2.11.9",
"@grafana/faro-web-sdk": "1.12.2",
"@grafana/faro-web-tracing": "1.12.2",
"@navikt/aksel-icons": "7.6.0",
"@navikt/arbeidssokerregisteret-utils": "1.2.0",
"@navikt/ds-css": "7.6.0",
"@navikt/ds-react": "7.6.0",
"@navikt/nav-dekoratoren-moduler": "3.1.1",
"@navikt/next-logger": "1.35.0",
"@navikt/oasis": "3.6.0",
"@unleash/nextjs": "1.5.0",
"cookie": "1.0.2",
"csp-header": "6.0.0",
"html-react-parser": "5.1.19",
"jose": "5.9.6",
"lodash": "4.17.21",
"nanoid": "5.0.9",
"next": "14.2.19",
"pino": "9.5.0",
"react": "18.3.1",
"react-autosuggest": "10.1.0",
"react-dom": "18.3.1",
"swr": "2.2.5",
"ulid": "2.3.0"
},
"devDependencies": {
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.0.1",
"@types/amplitude-js": "8.16.5",
"@types/jest": "29.5.14",
"@types/jest-axe": "3.5.9",
"@types/lodash": "4.17.13",
"@types/node": "22.10.1",
"@types/react": "18.3.12",
"autoprefixer": "10.4.20",
"eslint": "8.57.0",
"eslint-config-next": "14.2.19",
"husky": "9.1.7",
"jest": "29.7.0",
"jest-axe": "9.0.0",
"jest-environment-jsdom": "29.7.0",
"lint-staged": "15.2.10",
"next-router-mock": "0.9.13",
"pino-pretty": "13.0.0",
"postcss": "8.4.49",
"prettier": "3.4.2",
"tailwindcss": "3.4.16",
"typescript": "5.7.2"
},
"engines": {
"node": ">=22.12.0"
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"tabWidth": 4
},
"lint-staged": {
"*.{js,jsx,json,md,ts,tsx}": "prettier --write"
}
}