-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 2.13 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
79
80
81
82
83
{
"name": "ninkasi",
"version": "0.5.7",
"description": "Admin GUI for internal usage",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"prod": "BABEL_ENV=production 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": {
"@entur/auth-provider": "1.1.0",
"@entur/micro-frontend": "0.4.0",
"@material-ui/core": "4.12.4",
"@material-ui/icons": "4.11.3",
"@material-ui/lab": "4.0.0-alpha.61",
"axios": "0.27.2",
"chai": "4.3.7",
"chart.js": "2.9.4",
"classnames": "2.3.2",
"clipboard-js": "0.3.6",
"connected-react-router": "6.9.3",
"file-saver": "2.0.5",
"halogenium": "2.3.0",
"history": "4.10.1",
"husky": "3.1.0",
"lint-staged": "9.5.0",
"lodash": "4.17.21",
"material-ui": "0.20.0",
"moment": "2.29.4",
"muicss": "0.10.3",
"prettier": "1.19.1",
"prop-types": "15.8.1",
"rc-progress": "2.6.1",
"react": "18.2.0",
"react-chartjs-2": "2.11.2",
"react-dom": "16.14.0",
"react-dropzone": "4.3.0",
"react-icons": "2.2.7",
"react-notification": "6.8.5",
"react-notification-system": "0.4.0",
"react-redux": "7.2.9",
"react-router": "5.3.4",
"react-scripts": "5.0.1",
"react-select": "2.4.4",
"redux": "4.2.0",
"redux-devtools-extension": "2.13.9",
"redux-logger": "3.0.6",
"redux-thunk": "2.4.2",
"sass": "1.69.4",
"styled-components": "4.4.1",
"uuid": "3.4.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"prettier": {
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write",
"git add"
]
}
}