-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 2.06 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
{
"name": "veilarbvisittkortfs",
"version": "0.1.0",
"type": "module",
"private": true,
"scripts": {
"start": "vite --mode mock",
"build": "tsc && vite build",
"build:dev": "tsc && NODE_ENV=development vite build",
"build:mock": "tsc && vite build --mode mock --base=/veilarbvisittkortfs/",
"serve": "vite preview",
"test": "vitest",
"prettier": "prettier --write 'src/**/*.ts{,x}'",
"lint": "eslint src",
"prepare": "husky",
"tsc": "tsc"
},
"browserslist": [
">0.2%",
"not dead",
"not ie < 11",
"not op_mini all"
],
"resolutions": {
"**/fsevents": "^1.2.9"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"prettier --write",
"eslint --config eslint.config.lintstaged.js"
]
},
"dependencies": {
"@amplitude/analytics-browser": "2.11.7",
"@navikt/aksel-icons": "7.11.0",
"@navikt/ds-css": "7.11.0",
"@navikt/ds-react": "7.11.0",
"@navikt/navspa": "6.1.1",
"axios": "1.7.9",
"classnames": "2.5.1",
"constate": "3.3.2",
"dayjs": "1.11.13",
"formik": "2.4.6",
"react": "18.3.1",
"react-dom": "18.3.1",
"swr": "^2.3.0"
},
"devDependencies": {
"@eslint/js": "9.19.0",
"@testing-library/react": "16.2.0",
"@types/react": "18.3.18",
"@types/react-dom": "18.3.5",
"@vitejs/plugin-react": "4.3.4",
"cross-env": "7.0.3",
"eslint": "9.19.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react-hooks": "5.1.0",
"globals": "15.14.0",
"husky": "9.1.7",
"jsdom": "26.0.0",
"less": "4.2.2",
"lint-staged": "15.4.3",
"msw": "2.7.0",
"prettier": "3.4.2",
"typescript": "5.7.3",
"typescript-eslint": "8.23.0",
"vite": "5.4.14",
"vite-plugin-svgr": "4.3.0",
"vitest": "3.0.5"
},
"msw": {
"workerDirectory": "public"
}
}