-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 771 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 771 Bytes
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
{
"name": "irate-backend",
"author": "Michael Lackey",
"description": "A restaurant reviews application to showcase a full stack MERN app to students.",
"version": "2.0.0",
"license": "MIT",
"private": true,
"homepage": "https://irate.surge.sh/",
"main": "server.js",
"engines": {
"node": "21.x",
"npm": "10.x"
},
"scripts": {
"dev": "node --watch server.js",
"heroku": "git push heroku main && cd client && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NobodysLackey/iRate.git"
},
"dependencies": {
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"jsonwebtoken": "^9.0.1",
"mongoose": "^6.5.0",
"morgan": "^1.10.0"
}
}