Spaces:
Running
Running
File size: 1,280 Bytes
ce2d6ca 4026879 db82489 72aa761 ce2d6ca 4026879 db82489 ce2d6ca | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | {
"name": "realblocks-server",
"version": "1.0.0",
"description": "RealBlocks visual app builder - server",
"main": "dist/index.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"migrate": "ts-node src/database/migrations/001_initial.ts"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"better-sqlite3": "^9.4.3",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.7",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"sharp": "^0.35.3",
"socket.io": "^4.7.5",
"uuid": "^9.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/better-sqlite3": "^7.6.8",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.5",
"@types/multer": "^1.4.11",
"@types/nodemailer": "^6.4.14",
"@types/passport": "^1.0.17",
"@types/passport-google-oauth20": "^2.0.17",
"@types/sharp": "^0.31.1",
"@types/uuid": "^9.0.7",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
}
}
|