-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.13 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
{
"name": "aktivitetskrav-mikrofrontend",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite --port 3000",
"build": "tsc && vite build",
"preview": "vite preview",
"prepare": "husky install",
"lint": "eslint --fix --ext .ts,.tsx,.js,.jsx .",
"pretty-quick": "pretty-quick --pattern \"**/*.*(ts|tsx)\"",
"cypress:open": "cypress open",
"cypress:run": "cypress run --component"
},
"dependencies": {
"@grafana/faro-web-sdk": "^1.12.2",
"@grafana/faro-web-tracing": "^1.12.2",
"@navikt/aksel-icons": "6.17.0",
"@navikt/ds-react": "6.17.0",
"@navikt/nav-dekoratoren-moduler": "^2.1.6",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-error-boundary": "^4.1.2",
"styled-components": "^6.1.13",
"swr": "2.2.5",
"zod": "^3.23.8"
},
"devDependencies": {
"@rollup/plugin-terser": "0.4.4",
"@testing-library/cypress": "^10.0.2",
"@testing-library/react": "16.0.1",
"@testing-library/user-event": "14.5.2",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@types/react-modal": "3.16.3",
"@types/styled-components": "^5.1.34",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-react": "4.3.4",
"autoprefixer": "^10.4.20",
"cypress": "^13.16.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.2",
"husky": "9.1.7",
"jsdom": "24.1.1",
"lint-staged": "15.2.10",
"msw": "^2.6.6",
"postcss": "^8.4.49",
"prettier": "3.4.1",
"pretty-quick": "4.0.0",
"rollup-plugin-import-map": "3.0.0",
"typescript": "5.7.2",
"uuid": "^10.0.0",
"vite": "^5.4.11",
"vite-plugin-css-injected-by-js": "3.5.2"
},
"prettier": {
"printWidth": 120
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint -c .eslintrc.pre-commit.cjs --fix",
"prettier --cache --write"
],
"*.{css,md,html,json}": [
"prettier --cache --write"
]
},
"msw": {
"workerDirectory": [
"public"
]
}
}