25 lines
636 B
JSON
25 lines
636 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": "webpack --mode production",
|
|
"build-before": "npm run build",
|
|
"initialize": "npm install",
|
|
"start": "webpack --mode development --watch",
|
|
"try-build-before": "npm run build-before"
|
|
},
|
|
"devDependencies": {
|
|
"clean-webpack-plugin": "^3.0.0",
|
|
"terser-webpack-plugin": "^2.3.8",
|
|
"ts-loader": "^8.0.3",
|
|
"typescript": "^3.9.7",
|
|
"webpack": "^4.43.0",
|
|
"webpack-cli": "^3.3.11"
|
|
}
|
|
}
|