-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 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
62
63
64
65
66
{
"name": "tms-microfrontend-template",
"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 ."
},
"dependencies": {
"@amplitude/analytics-browser": "2.3.8",
"@navikt/ds-css": "5.7.3",
"@navikt/ds-react": "5.7.3",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@rollup/plugin-terser": "0.4.4",
"@testing-library/react": "14.1.2",
"@testing-library/user-event": "14.5.2",
"@types/react": "18.2.47",
"@types/react-dom": "18.2.18",
"@types/react-modal": "3.16.3",
"@typescript-eslint/eslint-plugin": "6.18.1",
"@typescript-eslint/parser": "6.18.1",
"@vitejs/plugin-react": "4.2.1",
"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": "23.2.0",
"lint-staged": "15.2.0",
"prettier": "3.1.1",
"rollup-plugin-import-map": "3.0.0",
"typescript": "5.3.3",
"vite": "5.0.13",
"vite-plugin-css-injected-by-js": "3.3.1",
"vitest": "1.1.3"
},
"prettier": {
"printWidth": 120
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:react/jsx-runtime",
"plugin:@typescript-eslint/recommended",
"plugin:jsx-a11y/recommended"
],
"settings": {
"react": {
"version": "detect"
}
}
},
"lint-staged": {
"*.{ts,tsx,css,md,html,json}": [
"prettier --cache --write"
]
}
}