-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.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
{
"name": "tipaw_teach_test",
"version": "1.0.0",
"author": "Bilal Ashraf",
"license": "MIT",
"scripts": {
"start": "node dist/server.js",
"dev": "nodemon src/server.ts",
"init:db": "node dist/database/build.js",
"heroku-postbuild": "tsc"
},
"dependencies": {
"@prisma/client": "^3.15.2",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"config": "^3.1.0",
"dotenv": "^10.0.0",
"express": "^4.16.4",
"express-rate-limit": "^5.5.1",
"express-validator": "^5.3.1",
"gravatar": "^1.8.0",
"helmet": "^4.6.0",
"http-status": "^1.5.0",
"http-status-codes": "^1.3.2",
"joi": "^17.4.2",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"morgan": "^1.10.0",
"passport": "^0.5.0",
"passport-jwt": "^4.0.0",
"request": "^2.88.0",
"typescript": "^4.5.2",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/compression": "^1.7.2",
"@types/config": "0.0.34",
"@types/cors": "^2.8.12",
"@types/express": "^4.16.1",
"@types/express-rate-limit": "^5.1.3",
"@types/express-serve-static-core": "^4.17.25",
"@types/gravatar": "^1.8.0",
"@types/jsonwebtoken": "^8.3.2",
"@types/passport-jwt": "^3.0.6",
"@types/redis": "^2.8.32",
"concurrently": "^4.1.0",
"nodemon": "^1.19.4",
"prisma": "^3.15.2",
"ts-node": "^10.4.0",
"tslib": "^2.4.0"
}
}