-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
88 lines (88 loc) · 3.02 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
{
"name": "tiltaksgjennomforing",
"version": "0.1.0",
"private": true,
"homepage": "/tiltaksgjennomforing",
"type": "module",
"scripts": {
"build": "vite build",
"checknpm": "echo \"$npm_execpath\" | grep -q \"npm-cli\\.js$\" || (echo '⚠️ Bruk npm ellers får du sparken! ⚠️' && echo && exit 1)",
"preinstall": "$npm_execpath --silent run checknpm",
"prepare": "husky install",
"prettier": "prettier -c .",
"prettier:fix": "prettier -w .",
"release": "node sentry.js",
"start": "vite",
"svgo": "sh ./svgo.sh",
"test": "vitest --environment=jsdom --run",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"ts": "tsc -b",
"up": "docker-compose up -d --remove-orphans --build"
},
"dependencies": {
"@hookform/resolvers": "^3.9.0",
"@navikt/arbeidsgiver-notifikasjon-widget": "^6.5.9",
"@navikt/bedriftsmeny": "^6.13.0",
"@navikt/ds-css": "^6.3.6",
"@navikt/ds-icons": "^3.4.3",
"@navikt/ds-react": "^6.3.6",
"@navikt/navspa": "^6.0.1",
"amplitude-js": "^8.21.9",
"axios": "1.7.7",
"axios-retry": "4.5.0",
"classnames": "^2.5.1",
"lodash.debounce": "^4.0.8",
"lodash.isequal": "^4.5.0",
"lodash.sortby": "^4.7.0",
"moment": "^2.30.1",
"prop-types": "^15.7.2",
"react": "18.3.1",
"react-collapse": "^5.1.1",
"react-cookie": "^7.0.2",
"react-dom": "18.3.1",
"react-hook-form": "^7.53.0",
"react-loading-skeleton": "^3.4.0",
"react-responsive": "^10.0.0",
"react-router-dom": "^6.22.0",
"react-select": "^5.8.0",
"swr": "2.2.5",
"zod": "3.23.8"
},
"devDependencies": {
"@sentry/cli": "^2.28.5",
"@sentry/react": "^7.100.1",
"@storybook/addon-essentials": "8.3.5",
"@storybook/blocks": "8.3.5",
"@storybook/react": "8.3.5",
"@storybook/react-vite": "8.3.5",
"@storybook/test": "8.3.5",
"@testing-library/react": "^14.2.1",
"@types/amplitude-js": "^8.16.5",
"@types/lodash.debounce": "^4.0.9",
"@types/lodash.isequal": "^4.5.8",
"@types/lodash.sortby": "^4.7.9",
"@types/node": "^20.11.17",
"@types/react": "18.3.11",
"@types/react-collapse": "^5.0.4",
"@types/react-dom": "18.3.1",
"@types/react-responsive": "^8.0.8",
"@types/react-router-dom": "^5.3.3",
"@vitejs/plugin-react": "4.3.2",
"husky": "^9.0.10",
"jsdom": "25.0.1",
"less": "^4.2.0",
"lint-staged": "15.2.10",
"prettier": "^3.2.5",
"storybook": "8.3.5",
"svgo": "^3.2.0",
"typescript": "5.6.3",
"vite": "5.4.9",
"vite-plugin-svgr": "^4.2.0",
"vitest": "2.1.3"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,mjs,less,css,md}": "npm run prettier:fix",
"*.svg": "npm run svgo"
}
}