-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.33 KB
/
package.json
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
{
"name": "calendarb",
"version": "1.0.0",
"description": "A simple version of calendly system api",
"main": "index.js",
"scripts": {
"start": "node build/index.js",
"dev": "ts-node-dev --poll --respawn --watch src/swagger.yaml --transpile-only src/index.ts",
"build": "rimraf ./build && tsc"
},
"author": "Ayomipo Solaja",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/http-status-codes": "^1.2.0",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^18.15.13",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"ts-node-dev": "^2.0.0"
},
"dependencies": {
"@automapper/classes": "^8.7.7",
"@automapper/core": "^8.7.7",
"axios": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-joi-validation": "^5.0.1",
"googleapis": "^118.0.0",
"http-status-codes": "^2.2.0",
"inversify": "^6.0.1",
"inversify-inject-decorators": "^3.1.0",
"joi": "^17.9.2",
"jsonwebtoken": "^9.0.0",
"moment": "^2.29.4",
"mongoose": "^7.0.4",
"nanoid": "^3.3.6",
"reflect-metadata": "^0.1.13",
"rimraf": "^5.0.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.6.2",
"typescript": "^5.1.3",
"winston": "^3.8.2"
}
}