-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.23 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": "plantgeek",
"version": "1.0.0",
"main": "backend/server.ts",
"license": "MIT",
"dependencies": {
"@sendgrid/mail": "^8.1.1",
"@types/express": "^4.17.21",
"@types/morgan": "^1.9.9",
"@types/node": "^20.11.24",
"@types/source-map-support": "^0.5.10",
"bcrypt": "^5.1.1",
"cloudinary": "^2.0.2",
"dotenv": "^16.4.5",
"express": "^4.18.3",
"file-system": "^1.2.2",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.4.0",
"mongoose": "^8.2.1",
"morgan": "^1.10.0",
"pm2": "^5.3.1",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/mongodb": "^4.0.7",
"@types/morgan": "^1.9.9",
"@types/node": "^20.11.24",
"@types/source-map-support": "^0.5.10",
"nodemon": "^3.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"scripts": {
"build": "npx tsc && cd frontend && npm run build",
"install-frontend": "cd frontend && npm install",
"heroku-postbuild": "npm run install-frontend && npm run build",
"start": "node dist/server.js",
"dev": "nodemon backend/server.ts"
},
"engines": {
"node": "^20.11.1",
"npm": "^10.2.4"
}
}