-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json.save
33 lines (33 loc) · 959 Bytes
/
package.json.save
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
{
"name": "mongodb-proxy",
"version": "23.01.14",
"description": "a REST api that works as a proxy for using MongoDB through HTTP endpoints with authorized requests. starton locahost port 8080 by default",
"main": "api/index.js",
"scripts": {
"setup": "npm install --save --include=dev",
"start": "node ./api/index.js",
"dev": "nodemon ./src/index.ts",
"build": "tsc -p ./tsconfig.json",
"watch": "tsc -p ./tsconfig.json --watch",
"api": "nodemon ./api/index.js"
},
"dependencies": {
"cors": "2.8.5",
"express": "4.18.1",
"jsonwebtoken": "8.5.1",
"mongodb": "4.9",
"nodemon": "2.0.20",
"ts-node": "10.9.1",
"tslib": "2.4.0",
"typescript": "4.8.4"
},
"devDependencies": {
"@types/express": "4.17.14",
"@types/mongodb": "4.0.7",
"dotenv": "16.0.2",
"vercel": "28.4.6"
},
"private": "true",
"author": "Dave Inchy <[email protected]" ,
"license": "UNLICENSED"
}