-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.69 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
{
"name": "taskpro-backend",
"version": "0.0.0",
"private": true,
"engines": {
"node": ">16.17.1"
},
"scripts": {
"start": "ts-node -r tsconfig-paths/register app/server.ts",
"dev": "ts-node-dev -r tsconfig-paths/register --files --quiet app/server.ts",
"lint": "eslint --fix app/**/*.ts",
"format": "prettier --write ./app",
"format:check": "prettier --check ./app",
"prepare": "husky"
},
"dependencies": {
"@prisma/client": "^5.22.0",
"bcrypt": "^5.1.1",
"cloudinary": "^2.0.0",
"cors": "2.8.5",
"dotenv": "^16.3.1",
"express": "4.17.1",
"google-auth-library": "^9.15.0",
"http-errors": "^2.0.0",
"jsonwebtoken": "^9.0.2",
"morgan": "1.10.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.9",
"swagger-ui-express": "^5.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.5",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.11",
"@types/node": "^20.11.10",
"@types/nodemailer": "^6.4.14",
"@types/swagger-ui-express": "^4.1.6",
"@types/validator": "^13.11.8",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"eslint": "^8.56.0",
"eslint-formatter-mo": "^1.2.0",
"husky": "^9.0.6",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"prisma": "^5.22.0",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.4.5"
}
}