-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.58 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
{
"name": "@archisdi/zuu",
"version": "1.1.0",
"description": "yet another web framework for kickstarting a project",
"main": "index.js",
"scripts": {
"build": "node_modules/typescript/bin/tsc",
"clean-install": "rm -rf node_modules package-lock.json && npm install"
},
"repository": {
"type": "git",
"url": "htttps://github.com/archisdi/zuu.git"
},
"keywords": [
"framework"
],
"author": "Archie Isdiningrat",
"license": "ISC",
"devDependencies": {
"typescript": "~4.0.3"
},
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/bluebird": "^3.5.35",
"@types/bull": "^3.14.2",
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.7",
"@types/express": "^4.17.8",
"@types/express-rate-limit": "^5.1.2",
"@types/jsonwebtoken": "^8.5.2",
"@types/mongodb": "^3.6.16",
"@types/morgan": "^1.9.2",
"@types/randomstring": "^1.1.6",
"@types/rate-limit-redis": "^1.7.1",
"@types/uuid": "^8.3.0",
"@types/validator": "^13.1.3",
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"bull": "^3.18.0",
"clean-install": "^1.0.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-rate-limit": "^5.2.6",
"helmet": "^4.1.1",
"http-status-codes": "^2.1.4",
"ioredis": "^4.27.3",
"joi": "^17.2.1",
"jsonwebtoken": "^8.5.1",
"moment": "^2.28.0",
"mongodb": "^3.6.9",
"morgan": "^1.10.0",
"randomstring": "^1.2.1",
"rate-limit-redis": "^2.1.0",
"run": "^1.4.0",
"sequelize": "^5.22.4",
"uuid": "^8.3.0",
"winston": "^3.3.3"
}
}