forked from miguelgrinberg/microblog
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
50 lines (50 loc) · 1.33 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
{
"name": "flask-data-visualization",
"version": "1.0.0",
"description": "Example Flask application with React frontend. This app uses Victory Charts to display data visualization examples.",
"main": "index.js",
"scripts": {
"build": "webpack -p --progress --config webpack.config.js",
"dev-build": "webpack --progress -d --config webpack.config.js",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "webpack --progress -d --config webpack.config.js --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AllynH/flask-data-visualization.git"
},
"keywords": [
"Flask",
"React",
"ReactJS",
"Victory",
"Charts",
"Python",
"Javascript"
],
"author": "Allyn Hunt",
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"license": "MIT",
"bugs": {
"url": "https://github.com/AllynH/flask-data-visualization/issues"
},
"homepage": "https://github.com/AllynH/flask-data-visualization#readme",
"devDependencies": {
"@babel/core": "^7.6.3",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"babel-loader": "^8.0.6",
"victory": "^33.1.1",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9"
},
"dependencies": {
"react": "^16.9.0",
"react-dom": "^16.9.0"
}
}