bp_wb/package.json
mmabdalla c14f186263 Initial project setup: Create directory structure and configuration files
- Created manifest.yaml with Node.js runtime and routes
- Set up package.json with React, TypeScript, Vite, and dependencies
- Created TypeScript and Vite configuration files
- Set up ESLint and Prettier
- Created complete directory structure (frontend, backend, migrations)
- Created initial database schema migration
- Set up Express server with route handlers
- Created frontend entry point files
- Added version.txt with build 0.1.0.001
2025-12-28 14:59:01 +02:00

51 lines
1.3 KiB
JSON

{
"name": "bp_wb",
"version": "0.1.0",
"description": "BOSA Plugin Website Builder - Visual drag-and-drop page builder",
"main": "server.js",
"type": "module",
"scripts": {
"dev": "node --watch server.js",
"start": "node server.js",
"build": "tsc && vite build",
"build:frontend": "vite build",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"test": "jest",
"test:watch": "jest --watch"
},
"keywords": [
"bosa",
"plugin",
"website-builder",
"page-builder",
"visual-editor"
],
"author": "BOSA Team",
"license": "MIT",
"dependencies": {
"bosa-sdk-node": "^1.0.0",
"express": "^4.18.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.10.0",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"typescript": "^5.3.3",
"vite": "^5.0.8"
}
}