-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.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
{
"name": "bitcoin-price",
"version": "1.0.0",
"description": "A small app that gives Bitcoin price over a period of time",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --mode development"
},
"repository": {
"type": "git",
"url": "git+https://github.com/geek4ctrl/bitcoin-price.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/geek4ctrl/bitcoin-price/issues"
},
"homepage": "https://github.com/geek4ctrl/bitcoin-price#readme",
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.2",
"css-loader": "^1.0.0",
"style-loader": "^0.23.0",
"webpack": "^4.19.1",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^3.4.1"
},
"dependencies": {
"axios": "^0.18.0",
"chart.js": "^2.8.0",
"cors": "^2.8.5",
"fusioncharts": "^3.13.4",
"moment": "^2.24.0",
"react": "^16.5.2",
"react-chartjs-2": "^2.7.6",
"react-dom": "^16.8.6",
"react-fusioncharts": "^3.0.1",
"react-hot-loader": "^4.8.7"
}
}