-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.34 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
{
"name": "megahub-frontend",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite --mode dev",
"dev:bt": "vite --mode bt",
"build:bt": "vite build --mode bt --base=/Megahub/",
"build:web": "vite build --mode web",
"build:all": "npm run build:bt && npm run build:web",
"build:renderer": "vite build --config scripts/vite.config.js",
"generate-docs": "node scripts/generate-block-docs-simple.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"validate-constants": "node scripts/validate-constants.js",
"lint": "eslint src/ test/",
"lint:fix": "eslint --fix src/ test/",
"format": "prettier --write src/ test/ *.config.js",
"format:check": "prettier --check src/ test/ *.config.js"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.8.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.6.0",
"happy-dom": "^20.10.6",
"lightningcss": "^1.30.2",
"prettier": "^3.9.6",
"puppeteer": "^25.0.2",
"vite": "^8.0.16",
"vite-plugin-compression2": "^2.5.3",
"vitest": "^4.1.8"
},
"dependencies": {
"@blockly/field-colour": "^6.0.12",
"@blockly/shadow-block-converter": "^7.0.10",
"@blockly/workspace-minimap": "^0.3.9",
"blockly": "^12.5.1",
"prismjs": "^1.30.0"
}
}