-
Notifications
You must be signed in to change notification settings - Fork 664
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.36 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.36 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
{
"name": "developer-tools",
"version": "1.0.0",
"description": "Blockly Developer Tools",
"private": true,
"main": "index.js",
"scripts": {
"start": "webpack serve --open --mode=development",
"build": "webpack --mode=production --node-env=production",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"watch": "webpack --watch",
"serve": "webpack serve",
"predeploy": "npm run build:prod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RaspberryPiFoundation/blockly-samples.git"
},
"keywords": [
"blockly"
],
"author": "Blockly Team",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/RaspberryPiFoundation/blockly-samples/issues"
},
"homepage": "https://github.com/RaspberryPiFoundation/blockly-samples#readme",
"devDependencies": {
"@webpack-cli/generators": "^3.0.7",
"css-loader": "^6.8.1",
"html-webpack-plugin": "^5.5.3",
"mini-css-extract-plugin": "^2.7.6",
"style-loader": "^3.3.3",
"ts-loader": "^9.4.4",
"typescript": "^5.1.6",
"webpack": "^5.105.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.2.1"
},
"dependencies": {
"@blockly/field-angle": "^6.0.0",
"@blockly/field-colour": "^6.0.0",
"@material/web": "^1.4.0",
"blockly": "^12.0.0"
}
}