decla-red/shared/package.json

26 lines
665 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",
"dev": "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"
}
}