-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.54 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.54 KB
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
{
"name": "bel",
"version": "1.0.0",
"description": "Bel",
"main": "index.js",
"scripts": {
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"prod": "NODE_ENV=production node server.js",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"check": "prettier --check \"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\""
},
"license": "EUPL",
"dependencies": {
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.1",
"@entur/micro-frontend": "0.5.0",
"@mui/icons-material": "7.2.0",
"@mui/lab": "5.0.0-alpha.177",
"@mui/material": "7.2.0",
"@mui/styles": "6.4.8",
"@sentry/react": "7.120.4",
"@sentry/tracing": "7.120.4",
"@types/jest": "29.5.14",
"axios": "1.15.0",
"oidc-client-ts": "3.3.0",
"react": "19.1.1",
"react-dom": "19.1.1",
"react-oidc-context": "3.3.0",
"react-redux": "8.1.3",
"react-router-dom": "5.3.4",
"redux": "4.2.1",
"redux-devtools-extension": "2.13.9",
"redux-logger": "3.0.6",
"redux-thunk": "2.4.2",
"typescript": "4.9.5"
},
"devDependencies": {
"@types/node": "24.12.2",
"@types/react": "19.1.9",
"@types/react-dom": "19.1.7",
"@vitejs/plugin-react": "4.7.0",
"husky": "5.2.0",
"lint-staged": "10.5.4",
"prettier": "2.8.8",
"sass": "1.89.2",
"vite": "7.0.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
}
}