-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
69 lines (69 loc) · 2.1 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
{
"name": "kintone_plugin_spreadsheet",
"version": "1.0.0",
"main": "index.ts",
"license": "MIT",
"scripts": {
"webpack": "webpack",
"package": "dotenv cross-var \"npx kintone-plugin-packer src --ppk %PPK%\"",
"upload": "dotenv cross-var \"npx kintone-plugin-uploader --base-url %BASE_URL% --username %LOGINID% --password %PASSWORD% plugin.zip\"",
"build": "yarn webpack && yarn package",
"watch": "yarn webpack --watch",
"lint": "yarn eslint src/**/*.tsx src/**/*.ts"
},
"prettier": {
"singleQuote": true,
"arrowParens": "always",
"trailingComma": "all",
"printWidth": 120
},
"dependencies": {
"@emotion/core": "^11.0.0",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@kintone/rest-api-client": "^5.6.0",
"handsontable": "6.2.2",
"i18next": "^22.4.11",
"install": "^0.13.0",
"kintone-ui-component": "1.13.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^12.2.0",
"react-page-visibility": "^7.0.0",
"react-use": "^17.4.0"
},
"devDependencies": {
"@babel/core": "7.21.0",
"@kintone/dts-gen": "6.1.20",
"@kintone/plugin-packer": "^8.0.3",
"@kintone/plugin-uploader": "^9.1.1",
"@types/node": "18.14.0",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"@types/terser-webpack-plugin": "5.0.4",
"@types/webpack": "5.28.0",
"@typescript-eslint/eslint-plugin": "8.14.0",
"@typescript-eslint/parser": "8.14.0",
"cross-var": "^1.1.0",
"css-loader": "6.7.3",
"dotenv-cli": "^7.3.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"path": "0.12.7",
"prettier": "2.8.4",
"prettier-eslint": "15.0.1",
"prettier-stylelint": "0.4.2",
"sass": "^1.44.0",
"sass-loader": "13.2.0",
"style-loader": "3.3.1",
"ts-loader": "9.4.2",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"webpack": "5.75.0",
"webpack-bundle-analyzer": "4.8.0",
"webpack-cli": "5.0.1"
}
}