forked from scratchfoundation/scratch-blocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.07 KB
/
package.json
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
{
"name": "scratch-blocks",
"version": "2.0.0",
"description": "Scratch Blocks is a library for building creative computing interfaces.",
"author": "Massachusetts Institute of Technology",
"license": "Apache-2.0",
"homepage": "https://github.com/gonfunko/scratch-blocks#readme",
"repository": {
"type": "git",
"url": "https://github.com/gonfunko/scratch-blocks.git"
},
"main": "./dist/main.js",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --mode production",
"start": "webpack serve --open --mode development",
"test:lint": "eslint ."
},
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"eslint": "^4.19.1",
"source-map-loader": "^4.0.1",
"ts-loader": "^9.5.1",
"typescript": "^5.6.3",
"webpack": "^5.76.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"@blockly/continuous-toolbox": "^5.0.15",
"@blockly/field-colour": "^4.0.2",
"blockly": "^11.0.0"
}
}