-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 2.4 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
{
"name": "server",
"version": "1.0.0",
"description": "server for the bhashini student contributions portal",
"main": "dist/index.js",
"prisma": {
"seed": "ts-node prisma/seed/index.seed.ts"
},
"scripts": {
"start": "node dist/index.js",
"build": "tsc; tscpaths -p tsconfig.json -s src -o dist",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint -c .eslintrc.js . --fix --ext .ts",
"dev": "nodemon --watch './src/**/*.ts' --exec ts-node ./src/index.ts",
"test": "jest",
"seed": "ts-node prisma/seed/index.seed.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Scaler-Innovation-Labs/bhashini-student-contributions.git"
},
"keywords": [
"typescript",
"nodejs"
],
"author": "probablyarth",
"license": "ISC",
"bugs": {
"url": "https://github.com/Scaler-Innovation-Labs/bhashini-student-contributions/issues"
},
"homepage": "https://github.com/Scaler-Innovation-Labs/bhashini-student-contributions#readme",
"dependencies": {
"@aws-sdk/client-s3": "^3.592.0",
"@aws-sdk/s3-request-presigner": "^3.592.0",
"cookie-session": "^2.1.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.13",
"otp-generator": "^4.0.1",
"twilio": "^5.0.4",
"zod": "^3.23.8",
"zod-express-middleware": "^1.4.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@prisma/client": "^5.22.0",
"@types/cookie-session": "^2.0.49",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.11",
"@types/node": "^20.12.7",
"@types/nodemailer": "^6.4.15",
"@types/otp-generator": "^4.0.2",
"@types/supertest": "^6.0.2",
"@types/twilio": "^3.19.3",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"i": "^0.3.7",
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"npm": "^10.9.0",
"prettier": "^3.2.5",
"prisma": "^5.22.0",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tscpaths": "^0.0.9",
"typescript": "^5.4.5"
}
}