Files
OneDriveGDrive/server/package.json
MUIS1436 5fa3fb3d15 chore(config): add initial project configuration and setup files
- Add .env.example with Microsoft Azure AD and Google Cloud OAuth client ID placeholders
- Create .gitignore to exclude node_modules, build output, env files, IDE, OS, logs, and test coverage
- Add .prettierrc for consistent code formatting rules
- Add README.md with project overview, features, setup instructions, project structure, and technologies used
- Add components.json with UI framework and alias configuration
- Configure eslint.config.js for linting TypeScript and React code with recommended settings
- Add index.html as application entry point with root div and main script reference
- Add package-lock.json capturing full dependency tree and versions for reproducible installs
2026-01-31 08:59:18 +05:00

32 lines
774 B
JSON

{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"@microsoft/microsoft-graph-client": "^3.0.7",
"axios": "^1.13.4",
"cors": "^2.8.6",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"googleapis": "^170.1.0",
"isomorphic-fetch": "^3.0.0"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^25.0.10",
"ts-node-dev": "^2.0.0",
"typescript": "^5.9.3"
}
}