-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.84 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
52
53
54
55
56
57
58
59
60
61
62
{
"name": "fulstackcryptoproject",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "rimraf dist && tsc-watch --onSuccess \" npm run dev \"",
"dev": "nodemon ./src/app.ts --watch ./src --onChange \" rimraf dist\" ",
"lint": "eslint --cache --ext .js,.ts src",
"lint-fix": "npm run lint -- --fix"
},
"keywords": [],
"author": "Vasyl Olesh",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.238.0",
"aws-sdk": "^2.1277.0",
"bcrypt": "^5.1.0",
"cron": "^2.1.0",
"dayjs": "^1.11.7",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-fileupload": "^1.4.0",
"joi": "^17.7.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.7.3",
"nodemailer": "^6.8.0",
"nodemailer-express-handlebars": "^5.0.0",
"reflect-metadata": "^0.1.13",
"twilio": "^3.84.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/aws-sdk": "^2.7.0",
"@types/bcrypt": "^5.0.0",
"@types/cron": "^2.0.0",
"@types/express": "^4.17.14",
"@types/express-fileupload": "^1.4.1",
"@types/joi": "^17.2.3",
"@types/jsonwebtoken": "^9.0.0",
"@types/mongoose": "^5.11.97",
"@types/multer": "^1.4.7",
"@types/node": "^18.11.13",
"@types/nodemailer": "^6.4.7",
"@types/nodemailer-express-handlebars": "^4.0.2",
"@types/twilio": "^3.19.3",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"eslint": "^8.29.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-promise": "^6.1.1",
"nodemon": "^2.0.20",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"tsc-watch": "^6.0.0",
"typescript": "^4.9.4"
}
}