-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (53 loc) · 2.26 KB
/
package.json
File metadata and controls
59 lines (53 loc) · 2.26 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
58
59
{
"name": "farmSim",
"version": "2.0.0",
"description": "Learn to code with Blockly in a farm",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --mode production",
"start": "webpack serve --open --mode development",
"prod": "npm run build && npx serve dist",
"pull": "npm run pull:blockly && npm run pull:plugin && npm run pull:app",
"pull:blockly": "cd ../blockly && git fetch upstream && git checkout codingcrops-changes && git pull",
"pull:plugin": "cd ../blockly-keyboard-experimentation && git fetch upstream && git checkout add-screen-reader-support-experimental && git pull",
"pull:app": "git fetch && git checkout master && git pull",
"build:blockly": "cd ../blockly && npm install && npm run package",
"link:blockly": "cd ../blockly/dist && npm link",
"build:plugin": "cd ../blockly-keyboard-experimentation && npm install && npm link blockly && npm run build",
"link:plugin": "cd ../blockly-keyboard-experimentation/dist && npm link",
"relink": "npm run build:blockly && npm run link:blockly && npm run build:plugin && npm run link:plugin && npm install && npm link blockly @blockly/keyboard-navigation",
"pull-and-link": "npm run pull && npm run build:blockly && npm run link:blockly && npm run build:plugin && npm run link:plugin && npm install && npm link blockly @blockly/keyboard-navigation"
},
"keywords": [
"blockly"
],
"author": "Jorene Ng",
"devDependencies": {
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@types/react-router-dom": "^5.3.3",
"css-loader": "^6.7.1",
"html-webpack-plugin": "^5.5.0",
"source-map-loader": "^4.0.1",
"style-loader": "^3.3.1",
"ts-loader": "^9.4.2",
"typescript": "^5.5.3",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"dependencies": {
"@blockly/field-colour": "^6.0.4",
"@blockly/keyboard-navigation": "^3.0.3",
"@blockly/plugin-cross-tab-copy-paste": "^8.0.1",
"@blockly/theme-dark": "^8.0.1",
"@blockly/toolbox-search": "^3.1.9",
"@microbit/keyosd": "^0.1.2",
"blockly": "^12.0.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-router-dom": "^7.9.6"
},
"private": true
}