-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.79 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.79 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
53
54
55
56
57
{
"name": "@fosrl/pangolin-node",
"version": "0.0.0",
"private": true,
"type": "module",
"description": "Wrapper for remote pangolin nodes",
"homepage": "https://github.com/fosrl/pangolin-node",
"repository": {
"type": "git",
"url": "https://github.com/fosrl/pangolin-node"
},
"license": "SEE LICENSE IN LICENSE AND README.md",
"scripts": {
"dev": "NODE_ENV=development ENVIRONMENT=dev tsx watch server/index.ts",
"build": "mkdir -p dist && node esbuild.mjs -e server/index.ts -o dist/server.mjs",
"start": "ENVIRONMENT=prod node --enable-source-maps dist/server.mjs"
},
"dependencies": {
"@node-rs/argon2": "2.0.2",
"axios": "1.12.2",
"cookie-parser": "1.4.7",
"cors": "2.8.5",
"drizzle-orm": "0.44.7",
"eslint": "9.38.0",
"eslint-config-next": "16.1.6",
"express": "5.1.0",
"express-rate-limit": "8.1.0",
"helmet": "8.1.0",
"http-errors": "2.0.0",
"js-yaml": "4.1.0",
"node-cache": "5.1.2",
"pg": "8.16.3",
"react": "19.2.0",
"semver": "7.7.3",
"winston": "3.18.3",
"winston-daily-rotate-file": "5.0.0",
"ws": "8.18.3",
"yargs": "18.0.0",
"zod": "4.1.12",
"zod-validation-error": "4.0.2"
},
"devDependencies": {
"@types/cookie-parser": "1.4.10",
"@types/cors": "2.8.19",
"@types/express": "5.0.4",
"@types/js-yaml": "4.0.9",
"@types/node": "25.0.3",
"@types/pg": "8.15.5",
"@types/semver": "7.7.1",
"@types/ws": "8.18.1",
"esbuild": "0.27.2",
"esbuild-node-externals": "1.20.1",
"tsx": "4.21.0",
"typescript": "5.9.3",
"typescript-eslint": "8.53.0"
}
}