-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 962 Bytes
/
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
{
"name": "searchmed-api",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start:dev": "nodemon -e ts,js --exec ts-node -r tsconfig-paths/register app.ts",
"debug": "ndb app.ts",
"migrate": "ts-node ./src/migrations/index.ts"
},
"engines": {
"node": ">=14 <18.17"
},
"dependencies": {
"@googlemaps/google-maps-services-js": "^3.3.33",
"body-parser": "^1.20.2",
"core-js": "^3.37.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"express-session": "^1.17.3",
"geolib": "^3.3.4",
"http-server": "^14.1.1",
"mongodb": "^5.7.0",
"mongoose": "^7.3.4",
"nodemon": "^3.0.1",
"ts-node": "^10.9.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.21",
"@types/googlemaps": "^3.43.3",
"@types/node": "^20.12.13",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.6"
}
}