aboutsummaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2022-02-27 17:31:50 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2022-02-27 17:31:50 +0100
commitbbd692427632bf525f0fa46eeab0de0f8a563661 (patch)
tree6c13fdc978e3b5e97498bc16322d5ee56c8c1617 /package.json
parentInitial commit. (diff)
downloadpuppet-classifier-bbd692427632bf525f0fa46eeab0de0f8a563661.tar.gz
puppet-classifier-bbd692427632bf525f0fa46eeab0de0f8a563661.tar.xz
Initial code add.
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..f7440c4
--- /dev/null
+++ b/package.json
@@ -0,0 +1,33 @@
+{
+ "name": "puppet-classifier",
+ "version": "0.1",
+ "private": true,
+ "dependencies": {
+ "package.json": "^2.0.1",
+ "react": "^17.0.2"
+ },
+ "babel": {
+ "presets": [
+ "@babel/preset-env",
+ "@babel/preset-react"
+ ],
+ "plugins": []
+ },
+ "scripts": {
+ "build": "browserify --debug -t babelify static/js-source/script.js -o static/js/script.js",
+ "watch": "watchify --debug -t babelify static/js-source/script.js -o static/js/script.js"
+ },
+ "devDependencies": {
+ "@babel/core": "^7.16.7",
+ "@babel/preset-env": "^7.16.7",
+ "@babel/preset-react": "^7.16.7",
+ "babel-cli": "^6.26.0",
+ "babel-loader": "^8.0.4",
+ "babel-preset-react": "^6.24.1",
+ "babel-preset-react-app": "^3.1.2",
+ "babelify": "^10.0.0",
+ "browserify": "^17.0.0",
+ "react-dom": "^17.0.2",
+ "watchify": "^4.0.0"
+ }
+}