-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 858 Bytes
/
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
{
"name": "url-shortener",
"version": "0.0.1",
"description": "URL Shortener Microservice - Glitch",
"private": true,
"main": "server.js",
"scripts": {
"start": "tsc && node build/server.js",
"ts": "tsc"
},
"dependencies": {
"@fastify/cors": "^9.0.1",
"@fastify/formbody": "^7.4.0",
"@fastify/rate-limit": "^9.1.0",
"@fastify/static": "^7.0.4",
"@typegoose/auto-increment": "^3.6.1",
"dotenv": "^16.4.5",
"fastify": "^4.28.1",
"typescript": "^5.6.3",
"valid-url": "^1.0.9"
},
"engines": {
"node": ">16.0"
},
"keywords": [
"node",
"express"
],
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.14.0",
"@tsconfig/node16": "^16.1.3",
"@types/valid-url": "^1.0.7",
"eslint": "^9.9.0",
"globals": "^15.12.0",
"typescript-eslint": "^8.13.0"
}
}