-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.39 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
48
49
50
51
{
"name": "workout-tracker-backend",
"version": "1.0.0",
"description": "",
"main": "src/app.ts",
"scripts": {
"build": "tsc -p .",
"dev": "nodemon --files src/app.ts",
"start": "nodemon --files src/app.ts",
"lint": "eslint './src/**'"
},
"author": "Abhishek Singh",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-async-errors": "^3.1.1",
"google-libphonenumber": "^3.2.27",
"helmet": "^5.0.2",
"http-status-codes": "^2.2.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.3.0",
"morgan": "^1.10.0",
"nodemailer": "^6.7.0",
"twilio": "^3.76.1",
"validator": "^13.7.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/google-libphonenumber": "^7.4.23",
"@types/jsonwebtoken": "^8.5.8",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.24",
"@types/nodemailer": "^6.4.4",
"@types/validator": "^13.7.2",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"eslint": "^8.14.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.26.0",
"nodemon": "^2.0.15",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
}
}