-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.95 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.95 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
{
"name": "scratch-editor",
"version": "1.0.0-sam-scratch",
"private": "true",
"description": "SAM Scratch editor mono-repository",
"author": "Scratch Foundation",
"license": "AGPL-3.0-only",
"homepage": "https://github.com/scratchfoundation/scratch-editor#readme",
"repository": {
"type": "git",
"url": "https://github.com/scratchfoundation/scratch-editor.git"
},
"scripts": {
"build": "cross-env NODE_ENV=production npm run -w @scratch/scratch-vm build && npm run -w @scratch/scratch-gui build",
"build:dev": "npm run -w @scratch/scratch-vm build && npm run -w @scratch/scratch-gui build:dev",
"clean": "npm run --workspaces clean",
"version": "cross-env-shell ./scripts/npm-version.sh",
"setup-dev": "npm run -w scratch-samlabs setup-dev && npm run -w scratch-babysambot setup-dev && npm run -w scratch-huskylens setup-dev",
"test": "npm run -workspaces test",
"test:lint": "npm run -workspaces test:lint",
"watch": "npm run -w @scratch/scratch-gui watch",
"start": "npm run -w @scratch/scratch-gui start",
"start-prod": "cross-env NODE_ENV=production npm run -w @scratch/scratch-gui start"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"workspaces": [
"packages/scratch-samlabs",
"packages/scratch-BabySamBot",
"packages/scratch-huskylens",
"packages/scratch-vm",
"packages/scratch-gui"
],
"devDependencies": {
"@babel/eslint-parser": "^7.28.0",
"@commitlint/cli": "17.8.1",
"@commitlint/config-conventional": "17.8.1",
"@types/w3c-web-serial": "^1.0.8",
"baseline-browser-mapping": "^2.9.19",
"cross-env": "7.0.3",
"docdash": "^2.0.2",
"husky": "8.0.3",
"npm": "10.9.3",
"sweetalert": "^2.1.2",
"ts-loader": "^9.5.2",
"ts-node": "10.9.2",
"typescript": "^5.9.3"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@types/web-bluetooth": "^0.0.21"
}
}