aboutsummaryrefslogtreecommitdiffstats
path: root/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'package.json')
-rw-r--r--package.json33
1 files changed, 33 insertions, 0 deletions
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..1d7cc36
--- /dev/null
+++ b/package.json
@@ -0,0 +1,33 @@
+{
+ "name": "wicki-hayden-explorer",
+ "version": "0.0.1",
+ "scripts": {
+ "start": "webpack-dev-server -w",
+ "start:v": "webpack-dev-server -w --host 0.0.0.0 --watch-poll",
+ "build": "NODE_ENV=production webpack --config ./webpack.config.js --mode production --progress --colors"
+ },
+ "babel": {
+ "presets": [
+ "@babel/env",
+ "@babel/react"
+ ],
+ "plugins": [
+ "@babel/plugin-proposal-class-properties"
+ ]
+ },
+ "dependencies": {
+ "react": "^16.2.0",
+ "react-dom": "^16.2.0"
+ },
+ "devDependencies": {
+ "@babel/core": "^7.11.6",
+ "@babel/plugin-proposal-class-properties": "^7.10.4",
+ "@babel/preset-env": "^7.11.5",
+ "@babel/preset-react": "^7.10.4",
+ "babel-loader": "^8.1.0",
+ "html-webpack-plugin": "^4.5.0",
+ "webpack": "^4.20.2",
+ "webpack-cli": "^3.3.12",
+ "webpack-dev-server": "^3.11.0"
+ }
+}