-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.67 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.67 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
{
"name": "code-executor",
"type": "module",
"scripts": {
"start": "node server.js",
"dev": "nodemon --config config/nodemon.json server.js",
"test": "npm run test:unit:pure && npm run test:unit && npm run test:integration",
"test:unit:pure": "node --test tests/unit/apiError.test.js tests/unit/apiResponse.test.js tests/unit/outputHandler.test.js tests/unit/config.test.js tests/unit/crypto.test.js tests/unit/metricsCollector.test.js tests/unit/languageRegistry.test.js tests/unit/executionLimiter.test.js tests/unit/sandbox.test.js",
"test:unit": "npm run test:unit:metrics && npm run test:unit:webhooks && npm run test:unit:language && npm run test:unit:apikey",
"test:unit:metrics": "node tests/unit/metrics.test.js",
"test:unit:webhooks": "node tests/unit/webhooks.test.js",
"test:unit:language": "node tests/unit/language-registry.test.js",
"test:unit:apikey": "node tests/unit/apikey.test.js",
"test:integration": "npm run test:integration:main && npm run test:integration:auth && npm run test:integration:advanced",
"test:integration:main": "node tests/integration/integration.test.js",
"test:integration:auth": "node tests/integration/auth.test.js",
"test:integration:advanced": "node tests/integration/advanced-features.test.js",
"seed": "node scripts/seed.js",
"seed:admin": "node scripts/seed-admin.js",
"diagnose": "node scripts/diagnose.js",
"load:test": "k6 run scripts/load-test.js"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.6",
"dotenv": "^16.4.7",
"express": "^5.2.1",
"ioredis": "^5.9.2",
"jsonwebtoken": "^9.0.2"
},
"devDependencies": {
"nodemon": "^3.1.11"
}
}