-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
50 lines (50 loc) · 1.22 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "@lowdefy/blocks-template",
"version": "3.10.1",
"license": "MIT",
"description": "A template example for Lowdefy blocks.",
"homepage": "https://lowdefy.com",
"keywords": [
"lowdefy",
"lowdefy blocks"
],
"bugs": {
"url": "https://github.com/lowdefy/lowdefy/issues"
},
"contributors": [],
"repository": {
"type": "git",
"url": "https://github.com/lowdefy/blocks-template.git"
},
"browser": "dist/remoteEntry.js",
"files": [
"dist/*"
],
"scripts": {
"build": "webpack --config webpack.prod.js",
"prepare": "yarn build",
"start": "webpack serve --config webpack.dev.js"
},
"dependencies": {
"@lowdefy/block-tools": "3.10.1",
"react": "17.0.1",
"react-dom": "17.0.1"
},
"devDependencies": {
"@babel/cli": "7.12.16",
"@babel/core": "7.12.16",
"@babel/preset-env": "7.12.16",
"@babel/preset-react": "7.12.13",
"babel-loader": "8.2.2",
"buffer": "6.0.3",
"clean-webpack-plugin": "3.0.0",
"copy-webpack-plugin": "7.0.0",
"css-loader": "5.0.2",
"prettier": "2.2.1",
"style-loader": "2.0.0",
"webpack": "5.22.0",
"webpack-cli": "4.5.0",
"webpack-dev-server": "3.11.2",
"webpack-merge": "5.7.3"
}
}