-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.35 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
51
52
53
54
55
56
57
58
{
"name": "blockly-react-sample",
"version": "0.0.0",
"private": true,
"dependencies": {
"axios": "^0.21.4",
"blockly": "^3.20200924.4",
"electron": "^12.0.5",
"html-react-parser": "^1.2.8",
"mathml": "^1.1.12",
"node-blockly": "^1.2.8",
"react": "^17.0.1",
"react-datepicker": "^3.3.0",
"react-dom": "^17.0.1",
"react-redux": "^7.2.4",
"react-scripts": "^4.0.1",
"typescript": "^4.2.4"
},
"scripts": {
"audit": "npm audit fix",
"update": "npm update",
"postinstall": "cp -r node_modules/blockly/media public/media",
"predeploy": "npm run build",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"homepage": "./",
"blocklyDemoConfig": {
"title": "Blockly in React",
"description": "Load Blockly in a React project.",
"files": [
"build/index.html",
"build/**/*"
]
},
"devDependencies": {
"@types/react-dom": "^17.0.3",
"react-app-rewired": "^2.1.8",
"wasm-loader": "^1.3.0"
}
}