Nexus/package.json

55 lines
1.4 KiB
JSON

{
"name": "nexus",
"version": "1.0.0",
"description": "Modern TypeScript Application",
"main": "dist/index.js",
"scripts": {
"build": "tsc && vite build",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"dev:client": "vite",
"dev:all": "concurrently \"npm run dev\" \"npm run dev:client\"",
"clean": "rm -rf dist",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\""
},
"dependencies": {
"@lobehub/fluent-emoji": "^4.1.0",
"@lobehub/ui": "^4.38.0",
"@prisma/client": "^7.4.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"antd": "^6.3.0",
"antd-style": "^4.1.0",
"axios": "^1.13.5",
"cors": "^2.8.6",
"dotenv": "^16.4.5",
"express": "^5.2.1",
"lucide-react": "^0.564.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"socket.io": "^4.8.3",
"socket.io-client": "^4.8.3",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"@vitejs/plugin-react": "^5.1.4",
"concurrently": "^9.2.1",
"eslint": "^8.56.0",
"prettier": "^3.2.4",
"prisma": "^7.4.0",
"tsx": "^4.7.0",
"typescript": "^5.5.3",
"vite": "^7.3.1"
},
"engines": {
"node": ">=18.0.0"
},
"private": true
}