Skip to content

Commit 55763ab

Browse files
Merge pull request #97 from wang3101/feature
Package.json
2 parents d032166 + 909a9a1 commit 55763ab

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

app/components/Applications.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,10 @@ const Applications = () => {
5454
backgroundColor: 'rgba(33, 34, 41, 0.2)',
5555
border: '3px ridge #808080',
5656
boxShadow: '0 10px 10px rgba(0,0,0,0.5)',
57-
'&:hover, &.Mui-focusVisible': { color: 'white', background: 'rgba(33, 34, 41, 1.2)' },
57+
'&:hover, &.Mui-focusVisible': {
58+
color: 'white',
59+
background: 'rgba(33, 34, 41, 1.2)',
60+
},
5861
},
5962
hover: {
6063
position: 'relative',

app/components/Splash.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const Splash: React.FC<SplashProps> = ({ setFirstVisit }) => {
1313

1414
return (
1515
<div id="splash">
16-
<img src={'../assets/icons/icon.png'} alt="Chronos Logo" />
16+
<img src={'../assets/icon.png'} alt="Chronos Logo" />
1717
<span>chronos</span>
1818
</div>
1919
);

package.json

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,35 +32,30 @@
3232
"@fortawesome/fontawesome-svg-core": "^1.2.28",
3333
"@fortawesome/free-solid-svg-icons": "^5.13.0",
3434
"@fortawesome/react-fontawesome": "^0.1.9",
35-
"@jest-runner/electron": "^2.0.3",
3635
"@material-ui/core": "^4.11.0",
3736
"@material-ui/icons": "^4.9.1",
38-
"@types/react-test-renderer": "^16.9.2",
3937
"chart.js": "^2.8.0",
4038
"d3": "^5.16.0",
4139
"electron": "^6.1.11",
42-
"electron-devtools-installer": "^3.0.0",
4340
"express": "^4.17.1",
44-
"ify-loader": "^1.1.0",
4541
"moment": "^2.27.0",
4642
"mongodb": "^3.5.7",
4743
"mongoose": "^5.9.13",
4844
"pg": "^7.18.2",
4945
"plotly.js": "^1.54.1",
5046
"plotly.js-dist": "^1.54.1",
5147
"react": "16.10.1",
52-
"react-chartjs-2": "^2.9.0",
5348
"react-dom": "16.10.1",
5449
"react-plotly.js": "^2.4.0",
5550
"react-router-dom": "^5.2.0",
56-
"ttf-loader": "^1.0.2",
5751
"webdriverio": "^6.1.25"
5852
},
5953
"devDependencies": {
6054
"@babel/core": "^7.10.1",
6155
"@babel/plugin-proposal-class-properties": "^7.8.3",
6256
"@babel/preset-env": "^7.10.1",
6357
"@babel/preset-react": "^7.9.4",
58+
"@jest-runner/electron": "^2.0.3",
6459
"@types/chai": "^4.2.11",
6560
"@types/electron": "^1.6.10",
6661
"@types/electron-devtools-installer": "^2.2.0",
@@ -74,10 +69,12 @@
7469
"@types/react-dom": "^16.9.8",
7570
"@types/react-plotly.js": "^2.2.4",
7671
"@types/react-router-dom": "^5.1.5",
72+
"@types/react-test-renderer": "^16.9.2",
7773
"awesome-typescript-loader": "^5.2.1",
7874
"babel-eslint": "^10.1.0",
7975
"babel-loader": "^8.1.0",
8076
"css-loader": "^3.5.3",
77+
"electron-devtools-installer": "^3.0.0",
8178
"enzyme": "^3.11.0",
8279
"enzyme-adapter-react-16": "^1.15.2",
8380
"eslint": "^6.8.0",
@@ -89,6 +86,7 @@
8986
"eslint-plugin-react": "^7.19.0",
9087
"file-loader": "^4.3.0",
9188
"html-webpack-plugin": "^3.2.0",
89+
"ify-loader": "^1.1.0",
9290
"image-webpack-loader": "^6.0.0",
9391
"jest": "^26.1.0",
9492
"jest-config": "^26.1.0",

0 commit comments

Comments
 (0)