-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.03 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.03 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
{
"name": "@gardenjs/render-plugin-react",
"version": "1.0.0",
"description": "Plugin for rendering react components in gardenjs",
"main": "index.js",
"type": "module",
"scripts": {
"prepare": "husky",
"format": "prettier --write .",
"lint": "eslint src/."
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/gardenjs/render-plugin-react.git"
},
"keywords": [
"gardenjs",
"render",
"plugin",
"react"
],
"author": "Robin Danzinger",
"license": "MIT",
"bugs": {
"url": "https://github.com/gardenjs/render-plugin-react/issues"
},
"homepage": "https://github.com/gardenjs/render-plugin-react#readme",
"devDependencies": {
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.10",
"lint-staged": "^15.2.1",
"prettier": "^3.2.5"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"lint-staged": {
"*.+(js|jsx)": "eslint --fix",
"*.+(json|css|md)": "prettier --write"
}
}