-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.18 KB
/
package.json
File metadata and controls
52 lines (52 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
49
50
51
52
{
"name": "@lynnux-dev/api",
"version": "2.0.0",
"description": "LynnuxDev web rest api.",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon"
},
"keywords": [
"api",
" Lynnux",
" lynnuxdev"
],
"author": "Lynnux",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/lynnuxdev/api.git"
},
"bugs": {
"url": "https://github.com/lynnuxdev/api/issues"
},
"homepage": "https://github.com/lynnuxdev/api#readme",
"_publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"dependencies": {
"@fastify/cors": "^11.0.1",
"@fastify/jwt": "^9.1.0",
"@fastify/rate-limit": "^10.3.0",
"@fastify/swagger": "^9.5.1",
"@hono/node-server": "^1.16.0",
"fastify": "^5.4.0",
"hono": "^4.8.5",
"kysely": "^0.28.2",
"module-alias": "^2.2.3",
"uuid": "^11.1.0"
},
"devDependencies": {
"@types/node": "^24.0.13",
"@types/pg": "^8.15.4",
"dotenv": "^17.2.0",
"nodemon": "^3.1.10",
"pg": "^8.16.3",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"_moduleAliases": {
"@": "src"
}
}