generated from hereisadi/tsc-backend
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
96 lines (96 loc) · 2.57 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
{
"name": "mern_backend_with_tsc",
"version": "1.0.0",
"description": "mern_backend_with_tsc",
"main": "index.js",
"scripts": {
"build": "pnpm install && tsc -p .",
"start": "pnpm build && node ./build/index.js",
"dev": "nodemon ./src/index.ts",
"lint": "eslint . --ext .ts --fix",
"pretty": "pnpm prettier --write .",
"precommit": "lint-staged",
"prepare": "npx simple-git-hooks"
},
"keywords": [],
"author": "NITSMUN",
"license": "ISC",
"dependencies": {
"@types/node": "^20.8.5",
"@types/passport": "^1.0.13",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"chalk": "^4.1.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dompurify": "^3.0.6",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.1",
"express-session": "^1.17.3",
"express-validator": "^7.0.1",
"jsdom": "^22.1.0",
"jsonwebtoken": "^9.0.2",
"moment-timezone": "^0.5.43",
"mongo-sanitize": "^1.1.0",
"mongoose": "^7.6.1",
"morgan": "^1.10.0",
"node-cron": "^3.0.2",
"nodemailer": "^6.9.9",
"nodemon": "^3.0.1",
"passport": "^0.6.0",
"passport-google-oauth2": "^0.2.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/body-parser": "^1.19.3",
"@types/cookie-parser": "^1.4.4",
"@types/cors": "^2.8.14",
"@types/dompurify": "^3.0.4",
"@types/eslint": "^8.44.4",
"@types/express": "^4.17.19",
"@types/express-session": "^1.17.8",
"@types/jsdom": "^21.1.4",
"@types/jsonwebtoken": "^9.0.3",
"@types/mongo-sanitize": "^1.0.2",
"@types/morgan": "^1.9.6",
"@types/node": "^18.11.18",
"@types/node-cron": "^3.0.10",
"@types/nodemailer": "^6.4.13",
"@types/passport-google-oauth2": "^0.1.6",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.4",
"@types/uuid": "^9.0.5",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"esbuild": "^0.17.19",
"eslint": "^8.51.0",
"lint-staged": "^13.3.0",
"nodemon": "^2.0.20",
"prettier": "^2.8.8",
"simple-git-hooks": "^2.9.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^4.9.4"
},
"lint-staged": {
"*.ts": [
"pnpm lint",
"pnpm pretty"
]
},
"simple-git-hooks": {
"pre-commit": "pnpm precommit"
},
"nodemonConfig": {
"ignore": [
"./build/**",
"./dist/**"
]
}
}