aboutsummaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorDeterminant <ted.sybil@gmail.com>2019-02-01 16:05:33 -0500
committerDeterminant <ted.sybil@gmail.com>2019-02-01 16:05:33 -0500
commit8b24b7bf2409549a5714fac32d52efb05d7d6621 (patch)
treedebf31cd62019193e3b6396011a6c6589532dbc4 /package.json
parentec404a971bca523dde755687bad7999f55af1c65 (diff)
maintain data store in background
Diffstat (limited to 'package.json')
-rw-r--r--package.json11
1 files changed, 9 insertions, 2 deletions
diff --git a/package.json b/package.json
index 3e84f28..08faf82 100644
--- a/package.json
+++ b/package.json
@@ -16,7 +16,9 @@
},
"scripts": {
"start": "react-scripts start",
- "build": "react-scripts build",
+ "build:ui": "react-scripts build",
+ "build:bg": "node scripts/build",
+ "build": "npm run build:ui && npm run build:bg",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
@@ -28,5 +30,10 @@
"not dead",
"not ie <= 11",
"not op_mini all"
- ]
+ ],
+ "devDependencies": {
+ "@babel/preset-env": "^7.3.1",
+ "babelify": "^10.0.0",
+ "browserify": "^16.2.3"
+ }
}