-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.89 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
72
73
74
75
76
77
78
{
"name": "ninsar",
"version": "0.1.0",
"license": "EUPL-1.2",
"proxy": "http://localhost:11701",
"dependencies": {
"@auth0/auth0-react": "1.12.1",
"@entur/alert": "0.16.22",
"@entur/button": "2.10.15",
"@entur/chip": "0.7.26",
"@entur/dropdown": "3.0.37",
"@entur/expand": "3.5.25",
"@entur/form": "5.4.20",
"@entur/icons": "4.3.3",
"@entur/layout": "2.3.20",
"@entur/loader": "0.5.14",
"@entur/menu": "4.2.40",
"@entur/micro-frontend": "0.4.0",
"@entur/modal": "1.7.57",
"@entur/table": "4.8.25",
"@entur/tokens": "3.17.3",
"@entur/typography": "1.8.49",
"chart.js": "3.9.1",
"graphql": "16.9.0",
"graphql-request": "4.3.0",
"http-proxy-middleware": "2.0.7",
"moment": "2.30.1",
"react": "17.0.2",
"react-chartjs-2": "4.3.1",
"react-dom": "17.0.2",
"react-router-dom": "6.28.0",
"react-scripts": "5.0.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"format": "prettier src --write"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@graphql-codegen/typescript-graphql-request": "4.5.9",
"@types/material-ui": "0.21.18",
"@types/react": "18.3.16",
"@types/react-dom": "18.3.5",
"@types/react-router-dom": "5.3.3",
"husky": "8.0.3",
"lint-staged": "13.3.0",
"sass": "1.82.0",
"prettier": "2.8.8",
"typescript": "4.9.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
}
}