-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.02 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.02 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
{
"name": "codeharbor-executor",
"version": "2.1.1",
"description": "Node.js code execution service for CodeHarbor n8n node",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon --ignore './data/' --ignore './bruno-rest-client/' --ignore './dashboard/' index.js",
"test": "vitest run",
"test:unit": "vitest run tests/unit",
"test:e2e": "vitest run tests/e2e --testTimeout=60000",
"test:coverage": "vitest run tests/unit --coverage"
},
"dependencies": {
"better-sqlite3": "^11.8.1",
"body-parser": "^1.20.3",
"cookie-parser": "^1.4.7",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"swagger-ui-express": "^5.0.1",
"yaml": "^2.7.1"
},
"engines": {
"node": ">=22.0.0"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.1.0",
"nodemon": "^3.1.9",
"vitest": "^4.1.0"
},
"packageManager": "pnpm@9.15.4+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0"
}