-
-
Notifications
You must be signed in to change notification settings - Fork 71
/
package.json
63 lines (63 loc) · 1.69 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
59
60
61
62
63
{
"name": "react-blockly",
"version": "9.0.0",
"description": "A React wrapper for the Blockly visual programming editor",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint --ext .ts,.tsx src",
"lint:fix": "eslint --fix --ext .ts,.tsx src",
"start": "webpack-dev-server --config webpack.config.test.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"watch": "tsc --watch",
"prepack": "yarn run build"
},
"files": [
"dist"
],
"author": "Nat Budin <natbudin@gmail.com>",
"license": "MIT",
"dependencies": {
"blockly": ">= 11.0.0",
"prop-types": "^15.8.1"
},
"peerDependencies": {
"react": "^16.8 || ^17.0 || ^18.0"
},
"devDependencies": {
"@types/node": "^12.0.0",
"@types/prop-types": "^15.7.5",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"babel-eslint": "^10.1.0",
"css-loader": "^6.7.3",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "5.0.0",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"webpack": "^5.63.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.4.0"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"repository": {
"type": "git",
"url": "https://github.com/nbudin/react-blockly/"
},
"packageManager": "yarn@3.4.1"
}