mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-01-23 10:45:57 +00:00
32 lines
868 B
JSON
32 lines
868 B
JSON
{
|
|
"name": "@super-productivity/super-sync-server",
|
|
"version": "1.0.0",
|
|
"description": "Reference WebDAV server for SuperSync",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"start": "node dist/index.js",
|
|
"dev": "ts-node src/index.ts",
|
|
"delete-user": "ts-node scripts/delete-user.ts"
|
|
},
|
|
"dependencies": {
|
|
"@fastify/cors": "^11.1.0",
|
|
"@fastify/static": "^8.3.0",
|
|
"bcryptjs": "^3.0.3",
|
|
"better-sqlite3": "^12.4.6",
|
|
"dotenv": "^17.2.3",
|
|
"fastify": "^5.6.2",
|
|
"jsonwebtoken": "^9.0.2",
|
|
"nodemailer": "^7.0.11",
|
|
"webdav-server": "^2.6.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bcryptjs": "^2.4.6",
|
|
"@types/better-sqlite3": "^7.6.13",
|
|
"@types/jsonwebtoken": "^9.0.10",
|
|
"@types/node": "^18.0.0",
|
|
"@types/nodemailer": "^7.0.4",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^5.0.0"
|
|
}
|
|
}
|