-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 3.18 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
105
106
107
108
{
"name": "dp-dagpenger",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev | pino-pretty",
"build": "next build",
"start": "next start",
"test": "vitest --passWithNoTests",
"test:staged": "vitest --run",
"postinstall": "npm run generate",
"prepare": "husky",
"lint": "eslint --fix --plugin tsc --rule 'tsc/config: [2, {configFile: \"./tsconfig.json\"}]' src/**/*.ts{,x}",
"generate": "graphql-codegen",
"e2e": "playwright test",
"e2e:ui": "playwright test --ui"
},
"engines": {
"node": ">=15.0.0",
"npm": ">=7.0.0"
},
"dependencies": {
"@grafana/faro-web-sdk": "^1.12.3",
"@navikt/aksel-icons": "^5.18.3",
"@navikt/ds-css": "^7.10.0",
"@navikt/ds-react": "^7.10.0",
"@navikt/nav-dekoratoren-moduler": "^3.2.0",
"@navikt/next-logger": "^1.24.0",
"@navikt/oasis": "^1.0.3",
"@portabletext/react": "^3.2.0",
"@portabletext/types": "^2.0.13",
"@sanity/block-content-to-react": "^3.0.0",
"@sanity/client": "^6.27.1",
"@next/bundle-analyzer": "^14.2.15",
"@types/amplitude-js": "^8.16.5",
"amplitude-js": "^8.21.9",
"classnames": "^2.5.1",
"date-fns": "^3.6.0",
"graphql": "^16.10.0",
"graphql-request": "^6.1.0",
"next": "^14.2.21",
"next-compose-plugins": "^2.2.1",
"next-intl": "^3.17.2",
"pdfobject": "^2.3.0",
"pino": "^8.21.0",
"prom-client": "^15.1.3",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"swr": "^2.3.0",
"unleash-client": "^5.6.1",
"uuid": "^10.0.0"
},
"devDependencies": {
"@axe-core/react": "^4.10.1",
"@faker-js/faker": "^8.4.1",
"@graphql-codegen/cli": "^5.0.3",
"@graphql-codegen/typescript": "^4.1.2",
"@playwright/test": "^1.50.0",
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^15.0.7",
"@testing-library/user-event": "^14.6.1",
"@types/jest-axe": "^3.5.9",
"@types/node": "^20.14.13",
"@types/react": "^18.3.3",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react": "^4.3.4",
"cross-fetch": "^4.1.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.5",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-testing-library": "^6.2.2",
"eslint-plugin-tsc": "^2.0.0",
"husky": "^9.1.7",
"jest-css-modules": "^2.1.0",
"jsdom": "^24.1.1",
"lint-staged": "^15.4.3",
"msw": "^2.7.0",
"node-mocks-http": "^1.16.2",
"pino-pretty": "^11.3.0",
"prettier": "^3.4.2",
"typescript": "^5.7.3",
"vite": "^5.4.10",
"vitest": "^2.0.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix --plugin tsc --rule 'tsc/config: [2, {configFile: \"./tsconfig.json\"}]'",
"prettier --write"
]
},
"prettier": {
"printWidth": 100
},
"msw": {
"workerDirectory": "public"
},
"optionalDependencies": {
"@esbuild/linux-x64": "0.24.2",
"@rollup/rollup-linux-x64-gnu": "^4.32.0"
}
}