26 lines
666 B
JSON
26 lines
666 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": "^4.0.0",
|
|
"file-loader": "^6.2.0",
|
|
"gl-matrix": "^3.3.0",
|
|
"prettier": "^3.8.3",
|
|
"terser-webpack-plugin": "^5.6.1",
|
|
"ts-loader": "^9.6.0",
|
|
"typescript": "^6.0.3",
|
|
"webpack": "^5.107.2",
|
|
"webpack-cli": "^7.0.3"
|
|
}
|
|
}
|