-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.09 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
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "growi-plugin-datatables",
"version": "1.0.1-RC.0",
"description": "GROWI plugin that adapts datatables to tables on a page.",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/ryu-sato/growi-plugin-datatables.git"
},
"keywords": [
"growi",
"growi-plugin"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/ryu-sato/growi-plugin-datatables/issues"
},
"homepage": "https://github.com/ryu-sato/growi-plugin-datatables#readme",
"scripts": {
"dev": "vite --host",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "yarn eslint --quiet \"src/**/*.{ts,tsx}\"",
"lint:format": "yarn lint --fix"
},
"dependencies": {
"datatables.net-bs5": "^2.0.3",
"datatables.net-buttons-bs5": "^3.0.1",
"datatables.net-plugins": "^2.0.2",
"datatables.net-searchpanes-bs5": "^2.3.0",
"datatables.net-select-bs5": "^2.0.0",
"mathjs": "^12.3.0",
"react": "^18.2.0",
"react-async": "^10.0.1",
"react-dom": "^18.2.0",
"react-innertext": "^1.1.5",
"uuid": "^9.0.1"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/eslint-parser": "^7.23.3",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"@vitejs/plugin-react": "^2.1.0",
"eslint": "^8.18.0",
"eslint-config-next": "^12.1.6",
"eslint-config-prettier": "^9.1.0",
"eslint-config-weseek": "^2.1.0",
"eslint-import-resolver-typescript": "^3.2.5",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-regex": "^1.10.0",
"eslint-plugin-vue": "^7.15.0",
"prettier": "^3.1.1",
"typescript": "^4.6.4",
"vite": "^3.1.0"
},
"growiPlugin": {
"schemaVersion": "4",
"types": [
"script"
]
},
"engines": {
"node": "20",
"yarn": "1.22 < 2",
"npm": "9"
}
}