-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.48 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
{
"name": "kintone-proxy-config-setting-plugin",
"scripts": {
"preinstall": "typesync || true",
"format": "prettier --write \"src/**/*.{js,ts,json}\"",
"lint": "eslint --fix \"src/**/*.{js,ts}\"",
"create-ppk": "kintone-plugin-packer plugin-development && rm plugin.zip",
"package:production": "NODE_ENV=production goqoo release && kintone-plugin-packer --ppk private-production.ppk --out dist/plugin-production.zip plugin-production",
"package:development": "NODE_ENV=development goqoo build && kintone-plugin-packer --ppk private-development.ppk --out dist/plugin-development.zip plugin-development",
"upload:production": "kintone-plugin-uploader dist/plugin-production.zip",
"upload:development": "kintone-plugin-uploader dist/plugin-development.zip",
"start": "goqoo start",
"s": "goqoo s",
"watch": "goqoo watch",
"generate": "goqoo generate",
"g": "goqoo g",
"test": "jest"
},
"license": "MIT",
"devDependencies": {
"@kintone/dts-gen": "^6.1.27",
"@kintone/plugin-packer": "^6.0.33",
"@kintone/plugin-uploader": "^7.1.10",
"@types/eslint": "^8.37.0",
"@types/luxon": "^3.3.0",
"@types/prettier": "^2.7.2",
"eslint": "^8.38.0",
"eslint-config-goqoo": "^1.2.0",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4",
"typesync": "^0.11.0"
},
"dependencies": {
"goqoo": "^1.3.0-beta011",
"kintone-ui-component": "^1.10.0",
"luxon": "^3.3.0"
}
}