-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
64 lines (64 loc) · 2.16 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
{
"name": "nodejs-boilertemplate",
"version": "1.0.0",
"private": true,
"author": "Eniola Osabiya <[email protected]>",
"scripts": {
"postinstall": "patch-package",
"build": "npx tsc && tsc-alias",
"start": "yarn build && node dist/src/index.js",
"dev": "nodemon --ext 'ts, tsx, json' --watch src --exec ts-node -r tsconfig-paths/register src/index.ts",
"lint": "eslint src/**/*.{ts,tsx}",
"run:script": "ts-node -r tsconfig-paths/register --script-mode"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.525.0",
"@aws-sdk/client-ses": "^3.525.0",
"@aws-sdk/lib-storage": "^3.525.1",
"@aws-sdk/s3-request-presigner": "^3.525.0",
"@react-email/components": "^0.0.15",
"@sentry/cli": "^2.28.6",
"@sentry/node": "^7.104.0",
"@sentry/profiling-node": "^7.104.0",
"axios": "^1.6.7",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.3",
"express-async-errors": "^3.1.1",
"helmet": "^7.1.0",
"ioredis": "^5.3.2",
"joi": "^17.12.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.2.0",
"morgan": "^1.10.0",
"ms": "^2.1.3",
"multer": "^1.4.5-lts.1",
"nanoid": "^5.0.6",
"nodemailer": "^6.9.11",
"patch-package": "^8.0.0",
"react": "^18.2.0"
},
"devDependencies": {
"@total-typescript/ts-reset": "^0.5.1",
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/helmet": "^4.0.0",
"@types/jsonwebtoken": "^9.0.6",
"@types/morgan": "^1.9.9",
"@types/ms": "^0.7.34",
"@types/multer": "^1.4.11",
"@types/node": "^20.11.24",
"@types/nodemailer": "^6.4.14",
"@types/react": "^18.2.61",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.57.0",
"nodemon": "^3.1.0",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.8",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3"
}
}