-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.83 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "crm-backend-ts",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"start": "ts-node -r tsconfig-paths/register dist/index.js",
"start:pm2": "pm2 start ecosystem.yml --only DevilsCRM",
"poststart:pm2": "pm2 log DevilsCRM",
"stop": "pm2 stop DevilsCRM",
"dev": "nodemon src/index.ts",
"debug": "nodemon --inspect src/index.ts",
"build": "tsc -p .",
"test": "jest",
"lint": "eslint src --ext .ts",
"lint:fix": "npm run lint -- --fix"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown",
"*.js": "eslint --cache --fix",
"*.{js,jsx,ts,tsx,css,scss,sass,md}": "prettier --write"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@sendgrid/mail": "^7.6.0",
"@shelf/jest-mongodb": "^2.1.0",
"@types/body-parser": "^1.19.2",
"axios": "^0.24.0",
"babel-jest": "^27.3.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"config": "^3.3.6",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"debug": "^4.3.3",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"helmet": "^4.6.0",
"http-errors": "^1.8.1",
"joi": "^17.4.2",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mongodb": "^4.2.0",
"mongoose": "^6.0.13",
"morgan": "^1.10.0",
"pm2": "^5.1.2",
"swagger-jsdoc": "^6.1.0",
"swagger-ui-express": "^4.3.0",
"uuid": "^8.3.2",
"winston": "^3.3.3"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/eslint-parser": "^7.16.5",
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/http-errors": "^1.8.1",
"@types/jest": "^27.0.3",
"@types/jsonwebtoken": "^8.5.6",
"@types/lodash": "^4.14.177",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.3",
"@types/node": "^16.11.9",
"@types/supertest": "^2.0.11",
"@types/uuid": "^8.3.3",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.5.0",
"cross-env": "^7.0.3",
"eslint": "^8.6.0",
"eslint-config-airbnb": "^19.0.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.3.1",
"lint-staged": "^12.1.2",
"nodemon": "^2.0.15",
"prettier": "^2.4.1",
"supertest": "^6.1.6",
"ts-node": "^10.4.0",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.5.2"
}
}