-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.71 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
{
"name": "acms-zoho",
"version": "3.0.7",
"description": "Zoho API と連携し、お問い合わせフォームなどで送信された内容をZoho CRMに登録します。",
"main": "deploy.js",
"scripts": {
"start": "pnpm run dev",
"dev": "vite build --watch",
"build": "tsc -p tsconfig.jsonc && vite build",
"preview": "vite preview",
"test": "echo \"Error: no test specified\" && exit 0",
"package": "pnpm run setup && pnpm run build:app",
"build:app": "node ./tools/build.js",
"setup": "node ./tools/setup.js",
"version:sync": "node ./tools/version.js",
"release:commit": "node ./tools/commit.js",
"release:patch": "pnpm version patch --no-git-tag-version && pnpm run version:sync && pnpm run package && pnpm run release:commit",
"release:minor": "pnpm version minor --no-git-tag-version && pnpm run version:sync && pnpm run package && pnpm run release:commit",
"release:major": "pnpm version major --no-git-tag-version && pnpm run version:sync && pnpm run package && pnpm run release:commit"
},
"packageManager": "pnpm@10.29.1",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/appleple/acms-zoho.git"
},
"author": "appleple",
"license": "MIT",
"bugs": {
"url": "https://github.com/appleple/acms-zoho/issues"
},
"homepage": "https://github.com/appleple/acms-zoho#readme",
"devDependencies": {
"@types/react": "^19.1.5",
"@types/react-dom": "^19.1.5",
"@vitejs/plugin-react": "^4.5.0",
"archiver": "^7.0.1",
"typescript": "^5.8.3",
"vite": "^6.4.2"
},
"dependencies": {
"classnames": "^2.5.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-select": "^5.10.2",
"swr": "^2.3.6"
}
}