forked from thedevs-network/kutt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.06 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
{
"name": "kutt",
"version": "3.0.2",
"description": "Modern URL shortener.",
"main": "./server/server.js",
"scripts": {
"dev": "cross-env NODE_ENV=development node --watch-path=./server server/server.js",
"start": "cross-env NODE_ENV=production node server/server.js",
"migrate": "knex migrate:latest",
"migrate:make": "knex migrate:make",
"docs:build": "cd docs/api && node generate && cd ../.."
},
"repository": {
"type": "git",
"url": "git+https://github.com/thedevs-network/kutt.git"
},
"keywords": [
"url-shortener"
],
"author": "Pouria Ezzati <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/thedevs-network/kutt/issues"
},
"homepage": "https://github.com/thedevs-network/kutt#readme",
"dependencies": {
"bcryptjs": "2.4.3",
"bull": "4.16.5",
"cookie-parser": "1.4.7",
"cors": "2.8.5",
"cross-env": "7.0.3",
"date-fns": "2.30.0",
"dotenv": "16.0.3",
"envalid": "8.0.0",
"express": "4.21.2",
"express-rate-limit": "7.5.0",
"express-validator": "6.14.2",
"geoip-lite": "1.4.10",
"hbs": "4.2.0",
"helmet": "7.1.0",
"ioredis": "5.4.2",
"isbot": "5.1.19",
"jsonwebtoken": "9.0.2",
"knex": "3.1.0",
"ms": "2.1.3",
"mysql2": "3.12.0",
"nanoid": "3.3.8",
"node-cron": "3.0.3",
"node-mailer": "0.1.1",
"nodemailer": "6.9.16",
"passport": "0.7.0",
"passport-jwt": "4.0.1",
"passport-local": "1.0.0",
"passport-localapikey-update": "0.6.0",
"pg": "8.13.1",
"pg-query-stream": "4.7.1",
"rate-limit-redis": "4.2.0",
"sqlite3": "5.1.7",
"useragent": "2.3.0",
"uuid": "10.0.0"
},
"devDependencies": {
"@types/bcryptjs": "2.4.2",
"@types/cookie-parser": "1.4.3",
"@types/cors": "2.8.12",
"@types/express": "4.17.14",
"@types/hbs": "4.0.4",
"@types/jsonwebtoken": "7.2.8",
"@types/ms": "0.7.31",
"@types/node": "18.11.9",
"@types/node-cron": "2.0.2",
"@types/nodemailer": "6.4.6",
"@types/pg": "8.11.10",
"redoc": "2.2.0"
}
}