12c40c6004
Add Node.js CLI tool with Handlebars templates for generating standard CRUD artifacts: Java entity, service, DAO, controller, MyBatis mapper XML, and Vue frontend pages. Also generate the full SampleTableBoard CRUD reference implementation, update README with backend execution instructions, and add project plan documentation.
21 lines
349 B
JSON
21 lines
349 B
JSON
{
|
|
"name": "board-generator",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"bin": {
|
|
"generate-board": "./src/index.js"
|
|
},
|
|
"scripts": {
|
|
"start": "node ./src/index.js --help"
|
|
},
|
|
"engines": {
|
|
"node": ">=20.14.0"
|
|
},
|
|
"dependencies": {
|
|
"handlebars": "^4.7.8",
|
|
"pg": "^8.13.1",
|
|
"yaml": "^2.6.0"
|
|
}
|
|
}
|