-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.53 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "growi-plugin-n8n",
"version": "0.1.0",
"description": "GROWI plugin to preview n8n workflows.",
"private": true,
"repository": {
"type": "git",
"url": "git@github.com:Lanhild/growi-plugin-n8n.git"
},
"files": [
"dist"
],
"license": "MIT",
"keywords": [
"growi",
"growi-plugin"
],
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"prepare": "husky && git config --local core.editor cat"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-innertext": "^1.1.5"
},
"devDependencies": {
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"@vitejs/plugin-react": "^4.3.4",
"@semantic-release/github": "^11.0.1",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.1.7",
"semantic-release": "^24.2.0",
"eslint": "^9.17.0",
"eslint-config-next": "^15.1.2",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-regex": "^1.10.0",
"jest": "^29.7.0",
"typescript": "^5.7.2",
"vite": "^6.0.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"growiPlugin": {
"schemaVersion": "4",
"types": [
"script"
]
}
}