-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 858 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 858 Bytes
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
{
"name": "yals",
"version": "0.0.2",
"description": "Yet Another Link Shortener",
"main": "server.js",
"scripts": {
"dev": "nodemon -r dotenv/config src/server.ts",
"build": "tsc",
"start": "node dist/server.js"
},
"keywords": [
"link",
"shortener"
],
"author": "Marcin Czop <marcin@mczop.eu>",
"license": "MIT",
"dependencies": {
"express": "^4.21.1",
"helmet": "^8.0.0",
"nanoid": "^3.3.7",
"pg": "^8.13.1",
"pino": "^9.5.0",
"pino-http": "^10.3.0",
"pino-loki": "^2.3.1"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/express": "^5.0.0",
"@types/node": "^22.9.0",
"@types/pg": "^8.11.10",
"dotenv": "^16.4.5",
"eslint": "^9.15.0",
"globals": "^15.12.0",
"nodemon": "^3.1.7",
"pino-pretty": "^13.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.0"
}
}