Initial commit of files

This commit is contained in:
2026-02-02 20:02:11 +00:00
parent 695f853c94
commit 46ebe81379
2444 changed files with 576762 additions and 0 deletions

31
package.json Normal file
View File

@@ -0,0 +1,31 @@
{
"name": "ipad-repair-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "ts-node-dev --respawn --transpileOnly src/server/index.ts",
"dev:frontend": "cd client && npm start",
"build:backend": "tsc -p tsconfig.json",
"build:frontend": "cd client && npm run build",
"start": "node dist/server/index.js"
},
"dependencies": {
"@types/cors": "^2.8.19",
"@types/dotenv": "^8.2.3",
"@types/express": "^5.0.6",
"@types/node": "^25.2.0",
"@types/pg": "^8.16.0",
"@types/sqlite3": "^5.1.0",
"cors": "^2.8.6",
"dotenv": "^16.6.1",
"express": "^4.22.1",
"pg": "^8.18.0",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"concurrently": "^8.2.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.5"
}
}