forked from ilfrich/flask-react-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.89 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
{
"name": "example-app",
"version": "1.0.0",
"description": "Example React Application",
"scripts": {
"test": "",
"build": "webpack -p",
"lint": "eslint \"**/*.{js,mjs}\"",
"format": "eslint --fix \"**/*.{js,mjs}\"",
"hot-client": "webpack -d --watch",
"clean": "rm -rf static/* && rm -rf templates/"
},
"repository": {
"type": "git",
"url": "[email protected]:ilfrich/flask-react-template.git"
},
"author": "Peter Ilfrich",
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"css-loader": "^2.1.1",
"eslint": "^5.13.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.3.1",
"prettier": "^1.16.4",
"react-hot-loader": "^4.6.5",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.17",
"@fortawesome/free-solid-svg-icons": "^5.8.1",
"@fortawesome/react-fontawesome": "^0.1.4",
"jsx": "^0.9.89",
"moment": "^2.24.0",
"moment-timezone": "^0.5.27",
"npm": "^6.9.0",
"plotly.js": "^1.47.4",
"plotly.js-basic-dist": "^1.47.4",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-plotly.js": "^2.3.0",
"react-redux": "^7.1.1",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"react-s-alert": "^1.4.1",
"redux": "^4.0.4",
"redux-promise-middleware": "^5.1.1"
}
}