-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
89 lines (89 loc) · 2.36 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
{
"name": "multiemail-backend",
"version": "1.0.0",
"main": "src/app.ts",
"author": "Multi Email",
"license": "MIT",
"scripts": {
"dev": "yarn && tsnd --exit-child --transpile-only src/app.ts",
"build": "yarn && tsc --build",
"docs": "typedoc",
"prepare": "husky install",
"test": "set NODE_ENV=test && jest --forceExit && set NODE_ENV=",
"test:ci": "NODE_ENV=test jest --forceExit"
},
"bin": {
"multi-email-admin": "./build/bin/index.js"
},
"dependencies": {
"@typegoose/typegoose": "^10.0.0",
"@types/axios": "^0.14.0",
"@types/lodash": "^4.14.186",
"@types/nodemailer": "^6.4.6",
"axios": "^1.1.2",
"bcrypt": "^5.0.1",
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"express-rate-limit": "^6.6.0",
"helmet": "^6.0.0",
"http-status-codes": "^2.2.0",
"isomorphic-dompurify": "^1.0.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mongoose": "^7.0.0",
"nodemailer": "^6.8.0",
"nodemon": "^2.0.20",
"pino": "^8.6.0",
"pino-pretty": "^10.0.0",
"qs": "^6.11.0",
"yargs": "^17.6.0",
"zod": "^3.19.1"
},
"devDependencies": {
"@commitlint/cli": "17.4.4",
"@commitlint/config-conventional": "17.4.4",
"@types/bcrypt": "5.0.0",
"@types/cors": "2.8.14",
"@types/dotenv": "8.2.0",
"@types/express": "4.17.18",
"@types/jsonwebtoken": "9.0.0",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"add": "2.0.6",
"all-contributors-cli": "6.24.0",
"commitlint": "17.4.4",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.50.0",
"eslint-config-google": "0.14.0",
"eslint-config-prettier": "8.10.0",
"eslint-import-resolver-typescript": "3.5.3",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsonc": "2.6.0",
"eslint-plugin-no-secrets": "0.8.9",
"eslint-plugin-no-unsanitized": "4.0.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-pii": "1.0.2",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-sonarjs": "0.18.0",
"husky": "8.0.3",
"jest": "29.7.0",
"lint-staged": "^13.0.3",
"mongodb-memory-server": "8.15.1",
"prettier": "2.8.8",
"prettier-eslint": "15.0.1",
"supertest": "6.3.3",
"ts-jest": "29.0.5",
"ts-node": "10.9.1",
"ts-node-dev": "2.0.0",
"typedoc": "0.23.26",
"typescript": "4.9.5"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"npx prettier --write",
"npx eslint --fix"
]
}
}