-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.06 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
{
"dependencies": {
"bcrypt": "^5.0.1",
"connect-mongodb-session": "^3.1.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-rate-limit": "^6.7.0",
"express-session": "^1.17.3",
"heroku": "^7.67.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.7.0",
"mongoose": "^6.4.4",
"validator": "^13.7.0"
},
"name": "server",
"version": "1.0.0",
"main": "dist/index.js",
"engines": {
"node": "18.x",
"npm": "8.13.2"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node dist/index.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\"",
"build": "npx tsc"
},
"keywords": [
"Express server",
"MongoDB"
],
"author": "Darius Garcia",
"license": "ISC",
"description": "Express.js backend for BullBear client",
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^18.15.5",
"concurrently": "^7.6.0",
"nodemon": "^2.0.21",
"typescript": "^5.0.2"
}
}