-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.82 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.82 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "time-booking-application",
"version": "1.0.0",
"description": "Time booking application for Labs",
"main": "index.js",
"private": true,
"workspaces": [
"backend",
"frontend"
],
"scripts": {
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"docker:build": "docker-compose build",
"docker:rebuild": "docker-compose down && docker-compose build && docker-compose up -d",
"docker:logs": "docker-compose logs -f",
"docker:logs:backend": "docker-compose logs -f backend",
"docker:logs:frontend": "docker-compose logs -f frontend",
"docker:ps": "docker-compose ps",
"db:migrate": "docker-compose exec backend npx prisma migrate dev",
"db:seed": "docker-compose exec backend npx prisma db seed",
"db:reset": "docker-compose exec backend npx prisma migrate reset -f",
"db:studio": "docker-compose exec -d prisma-studio npx prisma studio --hostname 0.0.0.0",
"start": "npm run docker:up",
"stop": "npm run docker:down",
"dev": "concurrently \"npm run dev:backend\" \"npm run wait-then-frontend\"",
"wait-then-frontend": "wait-on http://localhost:4000/api/health && npm run dev:frontend",
"dev:backend": "cd backend && npm run dev",
"dev:frontend": "cd frontend && npm run dev",
"build": "npm run build --workspaces",
"test": "npm run test --workspaces",
"lint": "npm run lint --workspaces",
"format": "npm run format --workspaces",
"ci": "npm run lint && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AdityaDRathore/Time-Booking-Application.git"
},
"keywords": [
"booking",
"scheduling",
"labs",
"coding",
"madhya-pradesh"
],
"author": {
"name": "Aditya D Rathore",
"email": "adityarathore7067@gmail.com",
"license": "UNLICENSED"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^24.0.0",
"@types/supertest": "^6.0.3",
"concurrently": "^8.2.2",
"dotenv-cli": "^8.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"prettier": "^3.5.3",
"supertest": "^7.1.1",
"ts-jest": "^29.3.4",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.7.2",
"vitest": "^3.2.3",
"wait-on": "^8.0.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{json,md}": [
"prettier --write"
]
},
"engines": {
"node": ">=18",
"npm": ">=9"
},
"dependencies": {
"@socket.io/redis-adapter": "^8.3.0",
"directory-tree": "^3.5.2",
"ioredis": "^5.6.1",
"jwt-decode": "^4.0.0",
"nodemailer": "^7.0.5",
"react-datepicker": "^8.4.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
}
}