This repository has been archived by the owner on Oct 17, 2024. It is now read-only.
generated from navikt/tms-microfrontend-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.71 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
{
"name": "arbeidssoker-mikrofrontend",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite --port 3000",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"prepare": "husky install",
"lint": "eslint --fix --ext .ts,.tsx,.js,.jsx .",
"pretty-quick": "pretty-quick --pattern \"**/*.*(ts|tsx)\""
},
"dependencies": {
"@alheimsins/uker-fra-dato": "1.0.4",
"@amplitude/analytics-browser": "^1.10.4",
"@navikt/aksel-icons": "3.3.1",
"@navikt/ds-css": "2.1.6",
"@navikt/ds-react": "2.1.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"swr": "2.0.3"
},
"devDependencies": {
"@rollup/plugin-terser": "0.4.0",
"@testing-library/react": "13.4.0",
"@testing-library/user-event": "14.4.3",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"@types/react-modal": "3.13.1",
"@typescript-eslint/eslint-plugin": "5.50.0",
"@typescript-eslint/parser": "5.50.0",
"@vitejs/plugin-react": "3.1.0",
"eslint": "8.33.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.32.2",
"husky": "7.0.0",
"jsdom": "21.1.0",
"lint-staged": "13.1.0",
"prettier": "2.8.3",
"pretty-quick": "3.1.3",
"rollup-plugin-import-map": "3.0.0",
"typescript": "4.9.5",
"vite": "4.1.5",
"vite-plugin-css-injected-by-js": "2.4.0",
"vite-plugin-mock": "2.9.6",
"vitest": "0.28.3"
},
"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"
]
}
}