This repository has been archived by the owner on Jun 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
91 lines (91 loc) · 2.88 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
{
"name": "veientilarbeid",
"version": "0.1.0",
"type": "module",
"private": true,
"scripts": {
"start": "vite",
"build": "vite build",
"build:demo": "vite build --mode demo",
"build:cdn": "vite build --mode cdn",
"lint": "eslint --ext=jsx,js,ts,tsx ./src",
"lint:fix": "eslint --ext=jsx,js,ts,tsx ./src --fix",
"test": "npm run lint && vitest dev",
"test-ci": "npm run lint && cross-env CI=true vitest run",
"test:coverage": "vitest run --coverage",
"deploy": "npm run build && gh-pages -d build",
"prettier": "prettier --write 'src/**/*.ts' 'src/**/*.tsx' 'src/**/*.css'",
"refresh": "rm -rf node_modules && rm package-lock.json && npm i",
"prepare": "husky install"
},
"dependencies": {
"@alheimsins/uker-fra-dato": "1.0.4",
"@alheimsins/virkedager": "2.2.0",
"@amplitude/analytics-browser": "2.3.8",
"@grafana/faro-web-sdk": "1.3.5",
"@grafana/faro-web-tracing": "1.3.5",
"@navikt/aksel-icons": "5.13.0",
"@navikt/ds-react": "5.13.0",
"@navikt/arbeidssokerregisteret-utils": "0.13.0",
"classnames": "2.5.1",
"core-js": "3.35.0",
"intersection-observer": "0.12.2",
"nanoid": "5.0.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-in-viewport": "1.0.0-alpha.30",
"swr": "2.2.4"
},
"devDependencies": {
"@rollup/plugin-terser": "0.4.4",
"@testing-library/dom": "9.3.4",
"@testing-library/jest-dom": "6.2.0",
"@testing-library/react": "14.1.2",
"@testing-library/user-event": "14.5.2",
"@types/amplitude-js": "8.16.5",
"@types/merge-deep": "3.0.3",
"@types/react": "18.2.47",
"@types/react-dom": "18.2.18",
"@vitejs/plugin-react": "4.2.1",
"c8": "9.1.0",
"cross-env": "7.0.3",
"eslint": "8.56.0",
"eslint-config-react-app": "7.0.1",
"husky": "8.0.3",
"jsdom": "23.2.0",
"lint-staged": "15.2.0",
"merge-deep": "3.0.3",
"msw": "2.0.14",
"prettier": "3.2.2",
"rollup-plugin-import-map": "3.0.0",
"typescript": "5.3.3",
"vite": "5.0.13",
"vite-plugin-css-injected-by-js": "3.3.1",
"vite-plugin-environment": "1.1.3",
"vite-plugin-html": "3.2.1",
"vite-plugin-svgr": "4.2.0",
"vitest": "1.2.0",
"whatwg-fetch": "3.6.20"
},
"browserslist": [
">0.2%",
"not dead",
"not ie < 11",
"not op_mini all"
],
"prettier": {
"printWidth": 120,
"singleQuote": true,
"tabWidth": 4
},
"lint-staged": {
"*.{js,jsx,json,md,ts,tsx}": "prettier --write"
},
"snyk": true,
"msw": {
"workerDirectory": "public"
},
"engines": {
"node": ">=20.11.1"
}
}