aboutsummaryrefslogtreecommitdiffstats
path: root/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'package.json')
-rw-r--r--package.json37
1 files changed, 37 insertions, 0 deletions
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..6bbf741
--- /dev/null
+++ b/package.json
@@ -0,0 +1,37 @@
+{
+ "name": "fedidag-client",
+ "version": "0.0.1",
+ "scripts": {
+ "start": "webpack-dev-server -w",
+ "watch": "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": {
+ "core-js": "^3.8.3",
+ "dagre": "^0.8.5",
+ "jsonld": "^3.3.0",
+ "react": "^16.2.0",
+ "react-dom": "^16.2.0",
+ "regenerator-runtime": "^0.13.7"
+ },
+ "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.2.2",
+ "html-webpack-plugin": "^4.5.0",
+ "webpack": "^4.20.2",
+ "webpack-cli": "^3.3.12",
+ "webpack-dev-server": "^3.11.0"
+ }
+}