-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.12 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
{
"name": "ts-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"start": "NODE_ENV='production' node dist/app.js",
"warnings": "node --trace-warnings dist/app.js",
"dev": "NODE_ENV='development' nodemon dist/app.js",
"stag": "NODE_ENV='staging' nodemon dist/app.js",
"prod": "NODE_ENV='production' node dist/app.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"cloudinary": "^1.29.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-validator": "^6.12.2",
"helmet": "^4.6.0",
"jsonwebtoken": "^8.5.1",
"moment-timezone": "^0.5.33",
"mongoose": "^6.2.0",
"nanoid": "^3.3.2",
"nodemailer": "^6.7.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/nodemailer": "^6.4.4",
"ts-node-dev": "^1.1.8",
"tslint": "^6.1.3",
"typescript": "^4.6.4"
}
}