generated from navikt/tms-microfrontend-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.77 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
{
"name": "k9-innsyn-dine-pleiepenger-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": {
"@navikt/aksel-icons": "^6.16.0",
"@navikt/ds-css": "^6.16.0",
"@navikt/ds-react": "^6.16.0",
"@navikt/ds-tokens": "^6.6.0",
"@navikt/nav-dekoratoren-moduler": "2.1.6",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.41",
"postcss-import": "^16.1.0",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^22.12.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-react": "^7.35.0",
"husky": "^9.1.4",
"jsdom": "^24.1.1",
"lint-staged": "^15.2.9",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0",
"rollup-plugin-import-map": "^3.0.0",
"typescript": "^5.5.4",
"vite": "^5.4.11",
"vite-plugin-css-injected-by-js": "^3.5.1",
"vitest": "^2.0.5"
},
"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"
]
}
}