-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.53 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
{
"name": "kintone-to-slack",
"version": "0.1.0",
"type": "module",
"scripts": {
"start": "node scripts/npm-start.js",
"develop_vite_config": "vite build -c vite_config.config.ts --watch",
"develop_vite_desktop": "vite build -c vite_desktop.config.ts --watch",
"build:dev": "vite build -c vite_config.config.ts --mode development && vite build -c vite_desktop.config.ts --mode development && kintone-plugin-packer --ppk private.ppk --out dist/plugin.zip dist/out",
"build": "vite build -c vite_config.config.ts && vite build -c vite_desktop.config.ts && kintone-plugin-packer --ppk private.ppk --out dist/plugin.zip dist/out",
"develop_pack": "npm run pack -- --watch",
"pack": "kintone-plugin-packer --ppk private.ppk --out dist/plugin.zip dist/out",
"upload": ". ./.env && kintone-plugin-uploader dist/plugin.zip --base-url $KINTONE_BASE_URL --username $KINTONE_USERNAME --password $KINTONE_PASSWORD",
"lint": "eslint src",
"test": "vitest",
"generate-types": "json2ts src/shared/jsonSchema/config.schema.json -o src/shared/types/Config.ts"
},
"devDependencies": {
"@babel/core": "^7.22.17",
"@babel/plugin-transform-runtime": "^7.22.15",
"@babel/preset-env": "^7.22.15",
"@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.22.15",
"@cybozu/eslint-config": "^23.0.0",
"@kintone/dts-gen": "^8.0.12",
"@kintone/plugin-packer": "^8.1.2",
"@kintone/plugin-uploader": "^9.1.2",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@types/node": "^22.9.0",
"@types/react": "^18.2.23",
"@types/react-dom": "^18.2.8",
"@vitejs/plugin-react": "^4.3.3",
"babel-loader": "^9.1.3",
"css-loader": "^7.1.2",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"jsdom": "^25.0.1",
"json-schema-to-typescript": "^15.0.3",
"npm-run-all": "^4.1.5",
"npm-watch": "^0.13.0",
"prettier": "^3.0.3",
"style-loader": "^4.0.0",
"typescript": "^5.2.2",
"vite": "^5.4.10",
"vite-tsconfig-paths": "^5.1.2",
"vitest": "^2.1.5"
},
"dependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@kintone/rest-api-client": "^5.5.1",
"@mui/icons-material": "^5.16.7",
"@mui/material": "^5.16.7",
"@rjsf/core": "^5.20.0",
"@rjsf/mui": "^5.22.4",
"@rjsf/utils": "^5.20.0",
"@rjsf/validator-ajv8": "^5.20.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-loader-spinner": "^6.1.6"
}
}