-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.17 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.17 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
{
"name": "calendly-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm i && tsc",
"start:dev": "npx nodemon",
"start": "node dist/server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-session": "^1.17.3",
"googleapis": "^118.0.0",
"moment-timezone": "^0.5.43",
"mongoose": "^7.3.0",
"passport": "^0.6.0",
"passport-google-oauth": "^2.0.0",
"passport-google-oauth2": "^0.2.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.6.3",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.7",
"@types/node": "^20.3.1",
"@types/passport": "^1.0.12",
"@types/passport-google-oauth": "^1.0.42",
"@types/passport-google-oauth2": "^0.1.5",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"nodemon": "^2.0.22",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
}
}