decla-red/shared/package.json
schmelczerandras 220b20476f WIP ts
2020-10-08 10:27:07 +02:00

24 lines
623 B
JSON

{
"name": "shared",
"private": true,
"description": "Shared library between backend and frontend",
"main": "lib/main.js",
"types": "lib/src/main.d.ts",
"files": [
"lib"
],
"scripts": {
"build-before": "npx webpack --mode production",
"initialize": "npm install",
"start": "npx webpack --mode development --watch",
"try-build-before": "npx webpack --mode production"
},
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
"terser-webpack-plugin": "^2.3.8",
"ts-loader": "^8.0.3",
"typescript": "^4.0.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
}
}