-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.13 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
{
"name": "advanced-url-shortener",
"version": "1.0.0",
"description": "",
"main": "src/server.ts",
"scripts": {
"build": "swc src -d dist --config-file .swcrc",
"start": "node --env-file=.env dist/server.js",
"dev": "dotenv -- tsx watch src/server.ts",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"connect-redis": "^8.0.1",
"cors": "^2.8.5",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"jsonwebtoken": "^9.0.2",
"postgres": "^3.4.5",
"redis": "^4.7.0",
"swagger-ui-express": "^5.0.1",
"ua-parser-js": "^2.0.0",
"yaml": "^2.7.0"
},
"devDependencies": {
"@swc/cli": "0.1.63",
"@swc/core": "1.3.103",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/express-serve-static-core": "^5.0.5",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^22.10.7",
"@types/supertest": "^6.0.2",
"@types/swagger-ui-express": "^4.1.7",
"dotenv-cli": "^8.0.0",
"jest": "^29.7.0",
"supertest": "^7.0.0",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
}
}