-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 4.06 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 4.06 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "funcdock",
"version": "2.0.0",
"description": "FuncDock - A lightweight serverless platform that runs multiple Node.js functions in a single Docker container",
"type": "module",
"main": "server.js",
"bin": {
"funcdock": "bin/funcdock.js"
},
"scripts": {
"start": "node server.js",
"dev": "node --watch server.js",
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"test:watch": "node --experimental-vm-modules node_modules/.bin/jest --watch",
"test:coverage": "node --experimental-vm-modules node_modules/.bin/jest --coverage",
"test:functions": "node --experimental-vm-modules node_modules/.bin/jest --testPathPattern=functions",
"test:unit": "node --experimental-vm-modules node_modules/.bin/jest --testPathPattern=functions --testNamePattern='unit|handler'",
"test:integration": "node --experimental-vm-modules node_modules/.bin/jest --testPathPattern=functions --testNamePattern='integration|api'",
"logs": "tail -f logs/app.log",
"error-logs": "tail -f logs/error.log",
"setup": "node scripts/setup.js",
"deploy": "node scripts/deploy.js",
"deploy-host": "node scripts/deploy-from-host.js",
"check-git": "node scripts/check-git-config.js",
"status": "curl -s http://localhost:3000/api/status | jq",
"reload": "curl -X POST -H 'Content-Type: application/json' http://localhost:3000/api/reload",
"docker:build": "docker build -t funcdock .",
"docker:run": "docker run -p 3000:3000 -v $(pwd)/functions:/app/functions funcdock",
"docker:dev": "docker run -p 3000:3000 -v $(pwd)/functions:/app/functions -v $(pwd):/app funcdock npm run dev",
"build:ui": "cd dashboard && npm run build",
"dev:ui": "cd dashboard && npm run dev",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"audit": "npm audit --audit-level=moderate",
"prepare": "node scripts/prepare.js"
},
"keywords": [
"funcdock",
"serverless",
"functions",
"nodejs",
"typescript",
"microservices",
"docker",
"express",
"webhooks",
"cron",
"mcp",
"opentelemetry"
],
"author": "REAA Technologies",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/auto-instrumentations-node": "^0.57.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.57.0",
"@opentelemetry/resources": "^1.30.0",
"@opentelemetry/sdk-node": "^0.57.0",
"@opentelemetry/sdk-trace-node": "^2.7.0",
"@opentelemetry/semantic-conventions": "^1.28.0",
"bcryptjs": "^2.4.3",
"chokidar": "^5.0.0",
"compression": "^1.7.5",
"cookie-parser": "^1.4.7",
"cors": "^2.8.6",
"dotenv": "^17.4.2",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"express-validator": "^7.2.1",
"helmet": "^8.0.0",
"jsonwebtoken": "^9.0.3",
"morgan": "^1.10.0",
"multer": "^2.1.1",
"node-cron": "^3.0.3",
"socket.io": "^4.8.3",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"zod": "^3.24.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.7",
"@types/morgan": "^1.9.9",
"@types/multer": "^2.1.0",
"@types/node": "^22.10.5",
"@types/node-cron": "^3.0.11",
"@typescript-eslint/eslint-plugin": "^8.59.0",
"@typescript-eslint/parser": "^8.59.1",
"eslint": "^10.2.1",
"globals": "^17.5.0",
"husky": "^9.1.7",
"jest": "^30.3.0",
"nock": "^13.5.6",
"nodemon": "^3.1.14",
"prettier": "^3.8.3",
"supertest": "^7.1.4",
"typescript-eslint": "^8.59.1"
},
"engines": {
"node": ">=22.0.0"
},
"overrides": {
"test-exclude": "^7.0.1",
"babel-plugin-istanbul": "^8.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/reaatech/funcdock.git"
},
"bugs": {
"url": "https://github.com/reaatech/funcdock/issues"
},
"homepage": "https://github.com/reaatech/funcdock#readme"
}