-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.45 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
{
"private": true,
"scripts": {
"dev": "nodemon",
"build": "tsc && tsconfig-replace-paths --project tsconfig.json",
"start": "node dist/main",
"lint": "eslint --ext .ts src",
"lint:fix": "eslint --ext .ts src --fix",
"format": "prettier . --write"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/multer": "^1.4.7",
"@types/node": "^16.11.7",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"express": "^4.17.1",
"nodemon": "^2.0.15",
"prettier": "^2.4.1",
"prisma": "^3.4.2",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.11.0",
"tsconfig-replace-paths": "^0.0.11",
"typescript": "^4.4.4"
},
"dependencies": {
"@prisma/client": "^3.4.2",
"@quixo3/prisma-session-store": "^3.1.0",
"@sendgrid/mail": "^7.6.0",
"axios": "^0.24.0",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"csurf": "^1.11.0",
"dayjs": "^1.10.7",
"deep-email-validator": "^0.1.18",
"dotenv": "^10.0.0",
"express-session": "^1.17.2",
"helmet": "^4.6.0",
"joi": "^17.4.2",
"multer": "^1.4.3",
"node-fetch": "^3.1.0",
"razorpay": "^2.0.7"
}
}