-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.81 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
67
68
69
70
71
{
"name": "bel",
"version": "1.0.0",
"description": "Bel",
"main": "index.js",
"scripts": {
"start": "PORT=9000 react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom --passWithNoTests",
"eject": "react-scripts eject",
"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.11.1",
"@emotion/styled": "11.11.0",
"@entur/auth-provider": "1.1.1",
"@entur/micro-frontend": "0.4.0",
"@mui/icons-material": "5.14.19",
"@mui/lab": "5.0.0-alpha.155",
"@mui/material": "5.14.20",
"@mui/styles": "5.14.20",
"@sentry/react": "7.85.0",
"@sentry/tracing": "7.85.0",
"@types/jest": "29.5.11",
"@types/node": "18.19.2",
"@types/react": "17.0.71",
"@types/react-dom": "18.2.17",
"axios": "0.27.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"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": {
"husky": "5.2.0",
"lint-staged": "10.5.4",
"prettier": "2.8.8",
"react-scripts": "5.0.1",
"sass": "1.69.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}