-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 3.05 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
{
"name": "access-management",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"start": "vite",
"build": "vite build",
"test": "vite & wait-on http://localhost:5173 & cypress open",
"coverage": "cypress run --component",
"coverage:e2e": "vite & wait-on http://localhost:5173 & cypress run",
"preview": "vite preview",
"lint": "eslint .",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css}' --config ./.prettierrc.cjs",
"postinstall": "husky install",
"madge": "madge",
"architecture": "madge --extensions ts,tsx --image graph.svg src/",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"vitest": "vitest"
},
"dependencies": {
"@altinn/altinn-components": "^0.14.3",
"@cypress/react18": "^2.0.0",
"@digdir/designsystemet-css": "1.0.0-next.35",
"@digdir/designsystemet-react": "1.0.0-next.35",
"@digdir/designsystemet-theme": "1.0.0-next.35",
"@navikt/aksel-icons": "^7.0.0",
"@reduxjs/toolkit": "^2.2.5",
"@tanstack/react-query": "^5.0.0",
"axios": "^1.7.2",
"classnames": "^2.5.1",
"cross-env": "^7.0.3",
"cypress-real-events": "^1.10.0",
"i18next": "^24.0.0",
"i18next-browser-languagedetector": "^8.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^15.0.0",
"react-redux": "^9.0.0",
"react-router-dom": "^7.0.0"
},
"devDependencies": {
"@axe-core/playwright": "^4.10.1",
"@playwright/test": "^1.47.2",
"@storybook/addon-a11y": "^8.3.5",
"@storybook/addon-essentials": "8.5.2",
"@storybook/react": "8.5.2",
"@storybook/react-vite": "8.5.2",
"@testing-library/cypress": "^10.0.0",
"@types/node": "^22.0.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/redux-logger": "^3.0.9",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitejs/plugin-react": "^4.0.0",
"@vitest/coverage-istanbul": "2.1.9",
"cypress": "^13.15.0",
"cypress-recurse": "^1.35.2",
"dotenv": "^16.4.5",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-cypress": "^4.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-n": "^17.0.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^7.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-storybook": "^0.11.2",
"husky": "^9.0.0",
"lint-staged": "^15.0.0",
"madge": "^8.0.0",
"msw": "^2.4.9",
"msw-storybook-addon": "^2.0.3",
"prettier": "^3.2.5",
"redux-logger": "^3.0.6",
"storybook": "8.5.2",
"typescript": "5.7.3",
"typescript-plugin-css-modules": "^5.0.0",
"vite": "^6.0.0",
"vite-plugin-svgr": "^4.1.0",
"vitest": "^2.1.9"
},
"resolutions": {
"redux": "^5.0.0"
},
"workspaces": [
"cypress",
"playwright"
],
"packageManager": "[email protected]",
"msw": {
"workerDirectory": [
".mock"
]
}
}