install webpack

This commit is contained in:
counterweight 2025-03-12 18:56:36 +01:00
parent e81533db4c
commit f034f29d94
Signed by: counterweight
GPG key ID: 883EDBAA726BD96C
2 changed files with 1122 additions and 2 deletions

1118
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -20,6 +20,8 @@
"start": "node src/app.js", "start": "node src/app.js",
"start:container": "docker compose up -d --build", "start:container": "docker compose up -d --build",
"stop:container": "docker compose down", "stop:container": "docker compose down",
"build": "webpack",
"watch": "webpack --watch",
"cli": "node src/cli.js", "cli": "node src/cli.js",
"test": "playwright test", "test": "playwright test",
"lint": "eslint . --fix", "lint": "eslint . --fix",
@ -37,6 +39,8 @@
"playwright": "^1.50.1", "playwright": "^1.50.1",
"prettier": "^3.5.1", "prettier": "^3.5.1",
"prettier-plugin-ejs": "^1.0.3", "prettier-plugin-ejs": "^1.0.3",
"sequelize-cli": "^6.6.2" "sequelize-cli": "^6.6.2",
"webpack": "^5.98.0",
"webpack-cli": "^6.0.1"
} }
} }