-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
106 lines (106 loc) · 3.51 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
{
"name": "rekrutteringsbistand",
"version": "0.1.0",
"private": true,
"homepage": "/",
"scripts": {
"start": "vite",
"start:faro": "cross-env VITE_LOKAL_FARO=true vite",
"build": "vite build",
"test": "vitest --dir src",
"test:print": "DEBUG_PRINT_LIMIT=10000 vitest --dir src",
"test:coverage": "vitest run --coverage --dir src",
"prepare": "husky install"
},
"overrides": {
"@reach/combobox": {
"react": "18.2.0",
"react-dom": "18.2.0"
}
},
"dependencies": {
"@amplitude/analytics-browser": "^2.11.9",
"@grafana/faro-web-sdk": "1.3.9",
"@grafana/faro-web-tracing": "1.3.9",
"@navikt/ds-css": "6.1.0",
"@navikt/ds-react": "6.1.0",
"@navikt/fnrvalidator": "^1.3.0",
"@navikt/navspa": "^6.0.1",
"@reach/combobox": "^0.18.0",
"@tiptap/extension-blockquote": "^2.5.5",
"@tiptap/extension-bold": "^2.5.5",
"@tiptap/extension-bullet-list": "^2.5.5",
"@tiptap/extension-document": "^2.5.5",
"@tiptap/extension-hard-break": "^2.6.6",
"@tiptap/extension-heading": "^2.5.5",
"@tiptap/extension-history": "^2.5.5",
"@tiptap/extension-italic": "^2.5.5",
"@tiptap/extension-link": "^2.5.5",
"@tiptap/extension-list-item": "^2.5.5",
"@tiptap/extension-ordered-list": "^2.5.5",
"@tiptap/extension-paragraph": "^2.5.5",
"@tiptap/extension-text": "^2.5.5",
"@tiptap/extension-underline": "^2.5.5",
"@tiptap/pm": "^2.5.5",
"@tiptap/react": "^2.5.5",
"classnames": "2.5.1",
"deep-equal": "2.2.3",
"history": "^5.3.0",
"html-react-parser": "^4.0.0",
"loadjs": "^4.2.0",
"lodash.throttle": "^4.1.1",
"moment": "2.30.1",
"msw": "2.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-process-string": "^1.2.0",
"react-redux": "^8.1.1",
"react-router-dom": "6.22.1",
"redux": "^4.2.1",
"redux-saga": "^1.2.3",
"swr": "2.2.5",
"uuid": "^9.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@playwright/test": "^1.43.1",
"@testing-library/jest-dom": "^6.1.0",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/loadjs": "^4.0.0",
"@types/node": "^20.12.7",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@types/react-router-dom": "^5.3.3",
"@types/uuid": "^9.0.2",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "1.3.1",
"cross-env": "^7.0.3",
"eslint": "^8.43.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"http-proxy-middleware": "^2.0.4",
"husky": "^8.0.3",
"jsdom": "^24.0.0",
"prettier": "3.2.5",
"pretty-quick": "4.0.0",
"ts-node": "^10.9.1",
"typescript": "5.0",
"vite": "^5.0.12",
"vite-plugin-checker": "^0.6.2",
"vite-plugin-svgr": "^4.2.0",
"vitest": "^1.2.2"
},
"prettier": {
"tabWidth": 4,
"trailingComma": "es5",
"singleQuote": true,
"printWidth": 100
},
"msw": {
"workerDirectory": "public"
}
}