generated from navikt/tms-microfrontend-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.68 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
{
"name": "aap-min-side-microfrontend",
"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": {
"@navikt/nav-dekoratoren-moduler": "2.1.6",
"@navikt/aksel-icons": "^4.4.0",
"@navikt/ds-react": "^4.4.0",
"date-fns": "^4.1.0",
"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.2.13",
"@types/react-dom": "^18.2.6",
"@types/react-modal": "3.13.1",
"@typescript-eslint/eslint-plugin": "5.50.0",
"@typescript-eslint/parser": "5.50.0",
"@vitejs/plugin-react": "^4.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"husky": "^8.0.3",
"jsdom": "21.1.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"pretty-quick": "^4.0.0",
"rollup-plugin-import-map": "3.0.0",
"typescript": "^5.0.4",
"vite": "^4.3.9",
"vite-plugin-css-injected-by-js": "^3.5.2",
"vite-plugin-mock": "3.0.2",
"vitest": "^0.31.1"
},
"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"
]
}
}