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
|
{
"name": "chromicle",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack --mode development --watch",
"build": "webpack --mode production"
},
"author": {
"name": "Ted Yin",
"email": "[email protected]",
"url": "https://tedyin.com"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^2.1.0",
"eslint": "^5.13.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-react": "^7.12.4",
"html-webpack-plugin": "^4.0.0-beta.5",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"webpack": "^4.29.2",
"webpack-cli": "^3.2.3"
},
"dependencies": {
"@material-ui/core": "^3.9.2",
"@material-ui/icons": "^3.0.2",
"moment": "^2.24.0",
"react": "^16.8.1",
"react-dates": "^19.0.0",
"react-dom": "^16.8.1",
"react-material-color-picker": "^1.1.2",
"react-router-dom": "^4.3.1",
"recharts": "^1.4.2",
"typeface-roboto": "0.0.54"
}
}
|