-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
104 lines (104 loc) · 3.64 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
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "pam-stillingsok-frontend",
"version": "0.211.0",
"description": "",
"type": "module",
"scripts": {
"next": "npm run dev",
"build": "next build",
"dev": "next dev -p 3003",
"test": "vitest run",
"test:watch": "vitest watch",
"start:dependencies": "./start-docker-compose.sh",
"start:dependencies-with-local-search": "COMPOSE_PROFILES=local-search,opensearch,kafka ./start-docker-compose.sh",
"prettier:format": "npx prettier -w src",
"lint": "next lint",
"lint:fix": "next lint --fix",
"prettier": "prettier --check \"**/*.+(js|jsx|ts|tsx|json|yml|yaml|md|css)\"",
"prettier:fix": "prettier --write \"**/*.+(js|jsx|ts|tsx|json|yml|yaml|md|css)\"",
"prepare": "husky",
"pre-commit": "lint-staged",
"compileTS": "tsc --noEmit"
},
"author": "",
"license": "ISC",
"dependencies": {
"@amplitude/analytics-browser": "^2.11.9",
"@axe-core/react": "^4.9.1",
"@navikt/aksel-icons": "^6.16.3",
"@navikt/arbeidsplassen-css": "^8.2.17",
"@navikt/arbeidsplassen-react": "^8.3.8",
"@navikt/arbeidsplassen-theme": "^6.0.7",
"@navikt/ds-css": "^7.4.2",
"@navikt/ds-react": "^7.4.2",
"@navikt/oasis": "^3.2.2",
"@neshca/cache-handler": "^1.3.1",
"@sentry/nextjs": "^7.114.0",
"@sentry/types": "^8.36.0",
"@vercel/otel": "^1.8.2",
"browser-cookies": "^1.2.0",
"date-fns": "^3.6.0",
"html-react-parser": "^5.1.18",
"isomorphic-dompurify": "^2.4.0",
"next": "14.1.3",
"prom-client": "^15.1.2",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"redis": "^4.7.0",
"server-only": "^0.0.1",
"tsconfig-paths": "^4.2.0",
"uuid": "^9.0.1",
"winston": "^3.13.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@navikt/aksel-stylelint": "^7.1.2",
"@next/bundle-analyzer": "^14.2.13",
"@next/eslint-plugin-next": "^14.2.1",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.2",
"@types/node": "22.8.7",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/testing-library__jest-dom": "^6.0.0",
"@types/testing-library__react": "^10.2.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-react": "^4.2.1",
"axe-core": "^4.9.1",
"eslint-config-next": "^14.2.16",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-next": "^0.0.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-unused-imports": "^3.2.0",
"husky": "^9.0.11",
"jsdom": "^24.0.0",
"lint-staged": "^15.2.2",
"next-router-mock": "^0.9.13",
"postcss-value-parser": "^4.2.0",
"prettier": "^3.2.5",
"stylelint": "^16.9.0",
"stylelint-config-recommended": "^14.0.0",
"typescript": "5.6.3",
"vitest": "^1.6.0"
},
"lint-staged": {
"./*/**/*.{js,jsx,ts,tsx,json,yml,yaml}": [
"npx prettier --write",
"npx eslint --fix"
],
"./*/**/*.css": [
"npx prettier --write",
"npx stylelint --fix"
],
"*.{json,md}": [
"npx prettier --write"
]
}
}