-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.53 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
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "app.ts",
"scripts": {
"server": "node ./dist/app.js",
"build": "tsc --build --verbose",
"dev": "nodemon -L -e ts,json",
"test": "echo \"Error: no test specified\" && exit 1",
"build:compile": "npx babel src --extensions .ts --out-dir build --source-maps",
"build:types": "tsc",
"prettier": "prettier --write \"src/**/*.ts\"",
"prettier:check": "prettier --check \"src/**/*.ts\"",
"lint": "eslint --ignore-path .eslintignore \"src/**/*.ts\" --fix",
"lint:check": "eslint --ignore-path .eslintignore \"src/**/*.ts\"",
"prepare": "husky install"
},
"author": "Aditya Choudhury || Adwaith PJ",
"license": "ISC",
"devDependencies": {
"@aws-sdk/types": "3.489.0",
"@babel/cli": "7.23.4",
"@babel/core": "7.23.7",
"@babel/node": "7.22.19",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-transform-runtime": "7.23.7",
"@babel/preset-env": "7.23.7",
"@babel/preset-typescript": "7.23.3",
"@babel/runtime": "7.23.7",
"@types/aws-sdk": "2.7.0",
"@types/bcrypt": "^5.0.2",
"@types/cookie-parser": "^1.4.6",
"@types/cors": "^2.8.17",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.10.5",
"@types/nodemailer": "^6.4.14",
"@typescript-eslint/eslint-plugin": "6.16.0",
"@typescript-eslint/parser": "6.16.0",
"babel-core": "6.26.3",
"babel-plugin-module-resolver": "5.0.0",
"babel-plugin-source-map-support": "2.2.0",
"cross-env": "7.0.3",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "5.1.2",
"eslint-plugin-promise": "6.1.1",
"husky": "^8.0.0",
"prettier": "3.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@aws-sdk/client-s3": "3.490.0",
"@aws-sdk/s3-request-presigner": "3.490.0",
"bcrypt": "^5.1.1",
"consola": "^3.2.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"fuse.js": "7.0.0",
"joi": "^17.11.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.0.3",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.7",
"razorpay": "2.9.2"
},
"lint-staged": {
"**/*.{ts,js}": "eslint --cache --cache-location .next/cache/eslint/ --fix",
"**/*.{ts,js,md,json}": "prettier --write"
}
}