-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.18 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
{
"name": "url-shortener",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "tsc",
"start": "node dist/main/server.js",
"dev": "ts-node src/main/server.ts",
"docker:up": "docker-compose up --build -d",
"docker:down": "docker-compose down",
"docker:logs": "docker-compose logs -f"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reno/url-shortener.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/reno/url-shortener/issues"
},
"homepage": "https://github.com/reno/url-shortener#readme",
"dependencies": {
"cors": "^2.8.6",
"express": "^5.2.1",
"express-rate-limit": "^8.2.1",
"helmet": "^8.1.0",
"mysql2": "^3.18.2",
"uuid": "^13.0.0"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/node": "^25.3.2",
"@types/supertest": "^7.2.0",
"@types/uuid": "^11.0.0",
"jest": "^30.2.0",
"nodemon": "^3.1.14",
"supertest": "^7.2.2",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}