-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.17 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.17 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "tei_url_shortner",
"version": "1.0.0",
"description": "Simple and Fast Url shortner",
"main": "src/server.js",
"scripts": {
"start": "node build/src/server.js",
"build": "tsc -p tsconfig.json && tsc-alias",
"dev": "nodemon src/server.ts",
"postinstall": "npm run build",
"test": "NODE_ENV=test jest --ci --runInBand --detectOpenHandles",
"prepare": "husky",
"check-types": "tsc --pretty --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"types:install": "npx typesync",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"keywords": [
"URL Shortner",
"Shortner"
],
"author": "Teispace",
"license": "MIT",
"dependencies": {
"app-root-path": "^3.1.0",
"bcrypt": "^5.1.1",
"compression": "^1.7.5",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"envalid": "^8.0.0",
"express": "^5.0.1",
"express-rate-limit": "^7.4.1",
"express-session": "^1.18.1",
"express-validator": "^7.2.0",
"firebase-admin": "^12.7.0",
"generate-password": "^1.7.1",
"handlebars": "^4.7.8",
"helmet": "^8.0.0",
"jsonwebtoken": "^9.0.2",
"mime-types": "^2.1.35",
"module-alias": "^2.2.3",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"mysql2": "^3.11.3",
"nanoid": "^5.0.7",
"nodemailer": "^6.9.15",
"nodemailer-mailgun-transport": "^2.1.5",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"password-validator": "^5.3.0",
"redis": "^4.7.0",
"reflect-metadata": "^0.2.2",
"request-ip": "^3.3.0",
"sequelize": "^6.37.4",
"sequelize-typescript": "^2.1.6",
"slugify": "^1.6.6",
"socket.io": "^4.8.0",
"swagger-ui-express": "^5.0.1",
"uuid": "^11.0.2",
"winston": "^3.16.0",
"yaml": "^2.6.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"@jest/globals": "^29.7.0",
"@types/bcrypt": "~10.0.28-alpha",
"@types/compression": "~1.7.5",
"@types/ejs": "^3.1.5",
"@types/eslint": "~9.6.1",
"@types/eslint__eslintrc": "~2.1.2",
"@types/eslint__js": "~8.42.3",
"@types/express": "^5.0.0",
"@types/express-session": "~1.18.0",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "~9.0.6",
"@types/mime-types": "~2.1.4",
"@types/module-alias": "^2.0.4",
"@types/morgan": "~1.9.9",
"@types/multer": "^1.4.12",
"@types/node": "^22.8.7",
"@types/nodemailer": "~6.4.16",
"@types/nodemailer-mailgun-transport": "~1.4.6",
"@types/passport": "~1.0.17",
"@types/passport-google-oauth20": "~2.0.16",
"@types/redis": "^4.0.10",
"@types/request-ip": "~0.0.41",
"@types/supertest": "^6.0.2",
"@types/swagger-ui-express": "~4.1.7",
"@types/uuid": "~10.0.0",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"eslint": "^9.14.0",
"globals": "^15.12.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"typescript": "^5.6.3"
},
"_moduleAliases": {
"@": "src"
}
}