63 lines
1.9 KiB
JSON
63 lines
1.9 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",
|
|
"dev:frontend": "vite",
|
|
"dev:all": "concurrently \"npm run dev\" \"npm run dev:frontend\"",
|
|
"start": "node server.js",
|
|
"build": "npm run build:backend && npm run build:frontend",
|
|
"build:backend": "tsc -p tsconfig.backend.json",
|
|
"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": {
|
|
"express": "^4.18.2",
|
|
"react": "^18.2.0",
|
|
"react-dnd": "^16.0.1",
|
|
"react-dnd-html5-backend": "^16.0.1",
|
|
"react-dom": "^18.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@testing-library/jest-dom": "^6.1.5",
|
|
"@testing-library/react": "^14.1.2",
|
|
"@testing-library/user-event": "^14.5.1",
|
|
"@types/express": "^4.17.21",
|
|
"@types/jest": "^29.5.11",
|
|
"@types/node": "^20.10.0",
|
|
"@types/react": "^18.2.45",
|
|
"@types/react-dom": "^18.2.18",
|
|
"@types/supertest": "^6.0.3",
|
|
"@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",
|
|
"identity-obj-proxy": "^3.0.0",
|
|
"jest": "^29.7.0",
|
|
"jest-environment-jsdom": "^29.7.0",
|
|
"prettier": "^3.1.1",
|
|
"supertest": "^7.1.4",
|
|
"ts-jest": "^29.1.1",
|
|
"typescript": "^5.3.3",
|
|
"vite": "^5.0.8"
|
|
}
|
|
}
|