-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.07 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
{
"name": "pholani",
"version": "2.0.0",
"description": "A safe, classroom-ready web Pascal IDE for high school students (macOS / Linux / Docker).",
"type": "module",
"main": "src/server.js",
"scripts": {
"start": "node src/server.js",
"dev": "node --watch src/server.js",
"test": "vitest run --coverage",
"test:watch": "vitest",
"test:unit": "vitest run tests/unit",
"test:api": "vitest run tests/api",
"test:e2e": "playwright test",
"test:e2e:install": "playwright install chromium"
},
"keywords": [
"pascal",
"delphi",
"ide",
"education",
"compiler",
"fpc"
],
"author": "Pholani Contributors",
"license": "MIT",
"dependencies": {
"cors": "^2.8.5",
"express": "^5.1.0",
"helmet": "^8.2.0",
"lru-cache": "^11.5.0",
"multer": "^2.0.2",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@playwright/test": "^1.60.0",
"@vitest/coverage-v8": "^4.1.7",
"eslint": "^9.39.4",
"globals": "^17.6.0",
"supertest": "^7.2.2",
"vitest": "^4.1.7"
}
}