-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.7 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
{
"name": "coinlog-ui",
"version": "0.1.1",
"description": "Coinlog React App",
"homepage": "https://coinlog.vaan.dev",
"main": "bundle.js",
"repository": "[email protected]:ivanm/coinlog-ui.git",
"author": "Ivan Mayoral <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"build-dev": "webpack --mode development",
"build-prod": "webpack --mode production",
"deploy-prod": "gh-pages -d dist",
"lint": "eslint webpack.config.js ./src --color",
"lint-fix": "eslint webpack.config.js ./src --color --fix",
"prettier": "prettier 'src/**/*.{js,jsx,json,css,scss}' --write",
"start": "node server.js"
},
"dependencies": {
"@babel/preset-stage-0": "^7.0.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"classnames": "^2.2.6",
"css-loader": "^3.5.3",
"eslint": "^4.8.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-react": "^7.4.0",
"file-loader": "^2.0.0",
"gh-pages": "^3.2.3",
"html-webpack-plugin": "^3.2.0",
"localstorage": "^1.0.1",
"mini-css-extract-plugin": "^0.9.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"plotly.js": "^1.54.1",
"postcss-loader": "^3.0.0",
"postcss-nested": "^4.2.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hot-loader": "^4.5.3",
"react-plotly.js": "^2.4.0",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"redux-api-middleware": "^2.3.0",
"tailwindcss": "^1.4.6",
"terser-webpack-plugin": "^3.0.2",
"webpack": "^4.16.3",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5"
}
}