-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.47 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
{
"name": "back-end",
"version": "1.0.0",
"description": "O2 back-end project",
"main": "src/index.js",
"scripts": {
"dev": "ts-node src",
"build": "tsc -p tsconfig.json",
"test": "nodemon",
"start": "pm2 start ts-node -- --type-check -r tsconfig-paths/register src/index.ts"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.12",
"@types/ejs": "^3.0.7",
"@types/express": "^4.17.12",
"@types/mongoose": "^5.11.97",
"@types/node": "^15.12.5",
"@types/node-schedule": "^1.3.2",
"@types/nodemailer": "^6.4.2",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"nodemon": "^2.0.7",
"prettier": "^2.3.2",
"prettier-eslint": "^12.0.0",
"ts-node": "^10.0.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.3.5"
},
"dependencies": {
"aws-sdk": "^2.939.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"express-validator": "^6.12.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"mongoose": "^5.13.0",
"mongoose-validator": "^2.1.0",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"node-schedule": "^2.0.0",
"nodemailer": "^6.6.2",
"request": "^2.88.2"
},
"author": "",
"license": "ISC"
}