-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.18 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
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "./src/server.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon src/server.ts",
"start": "node dist/server.js",
"build": "tsc --project .",
"build-prod": "npm install && npm run build",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install"
},
"author": "Ankur Saha",
"license": "ISC",
"dependencies": {
"@prisma/client": "3.12.0",
"bcrypt": "^5.0.1",
"cloudinary": "^1.28.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.4",
"mysql2": "^2.3.3",
"node-schedule": "^2.1.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.6",
"@types/multer": "^1.4.7",
"@types/mysql": "^2.15.20",
"@types/node": "^17.0.8",
"@types/node-cron": "^3.0.1",
"@types/node-schedule": "^1.3.2",
"@types/uuid": "^8.3.4",
"nodemon": "^2.0.15",
"prisma": "^3.12.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
}
}