summaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorSam Light <samlight1994@gmail.com>2022-09-05 12:29:33 +0100
committerSam Light <samlight1994@gmail.com>2022-09-05 12:29:33 +0100
commitb9de84a6160788a226582f0a23dadb62e55ccab5 (patch)
treec3556eb0d140e7825700a0252220e223b2b0b474 /package.json
parent7c93841d147572f5c87c088ff4f599663ce4bac7 (diff)
Added build system for the js
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..65dea9c
--- /dev/null
+++ b/package.json
@@ -0,0 +1,37 @@
+{
+ "private": true,
+ "scripts": {
+ "watch": "webpack --mode=development --watch",
+ "build": "webpack --mode=development",
+ "prod": "webpack --mode=production --progress"
+ },
+ "sideEffects": [
+ ],
+ "name": "laravel-scorm-player",
+ "version": "1.0.0",
+ "main": "webpack.config.js",
+ "author": "Sam Light",
+ "license": "ISC",
+ "devDependencies": {
+ "@babel/core": "^7.12.10",
+ "@babel/eslint-parser": "^7.16.0",
+ "@babel/preset-env": "^7.12.11",
+ "babel-loader": "^8.2.2",
+ "babel-plugin-polyfill-corejs3": "^0.5.3",
+ "clean-terminal-webpack-plugin": "^3.0.0",
+ "clean-webpack-plugin": "^4.0.0",
+ "copy-webpack-plugin": "^11.0.0",
+ "eslint": "^8.1.0",
+ "eslint-webpack-plugin": "^3.1.0",
+ "webpack": "^5.11.1",
+ "webpack-cli": "^4.3.1",
+ "webpack-notifier": "^1.12.0",
+ "webpackbar": "^5.0.2"
+ },
+ "dependencies": {
+ "core-js": "^3.24.1",
+ "fetch-ie8": "^1.5.0",
+ "js-cookie": "^3.0.1",
+ "scorm-again": "^1.7.1"
+ }
+}