-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.26 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
{
"name": "scissor",
"version": "1.0.0",
"description": "An application to make working with and handling links easier",
"main": "./dist/index.js",
"engines": {
"node": "16.17.1"
},
"scripts": {
"test": "mocha",
"build": "tsc",
"start": "node ./dist/index.js",
"dev": "nodemon ./src/index.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.4.0",
"bcrypt": "^5.1.0",
"compression": "^1.7.4",
"connect-redis": "^7.1.0",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"express-session": "^1.17.3",
"helmet": "^7.0.0",
"mongoose": "^7.3.1",
"qrcode": "^1.5.3",
"randomstring": "^1.3.0",
"rate-limit-redis": "^3.0.2",
"redis": "^4.6.7",
"validator": "^13.9.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/compression": "^1.7.2",
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.7",
"@types/node": "^20.3.1",
"@types/qrcode": "^1.5.0",
"@types/randomstring": "^1.1.8",
"@types/validator": "^13.7.17",
"dotenv-vault": "^1.23.3",
"mocha": "^10.2.0",
"nodemon": "^2.0.22",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}