decla-red/shared/package.json
Andras Schmelczer 0ed480777e
Some checks failed
Build & deploy / Build & publish server image (push) Failing after 17s
Build & deploy / Build & deploy website (push) Successful in 1m28s
Deploy
2026-06-03 21:03:13 +01:00

26 lines
667 B
JSON

{
"name": "shared",
"version": "0.0.0",
"description": "Shared library between backend and frontend",
"main": "lib/main.js",
"types": "lib/src/main.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "npx webpack --mode production",
"start": "npx webpack --mode development --watch",
"try-build-before": "npx webpack --mode production"
},
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
"file-loader": "^6.1.0",
"gl-matrix": "3.3.0",
"prettier": "^2.0.5",
"terser-webpack-plugin": "^2.3.8",
"ts-loader": "^8.0.3",
"typescript": "^4.0.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
}
}