-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.35 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 2.35 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
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@hrica/zcatalyst-cli-plugin-react",
"version": "1.0.0",
"description": "Fork of official zcatalyst-cli-plugin-react from Zoho Catalyst Team, modernized with Vite and Webpack support",
"main": "lib/index.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/h-rica/zcatalyst-cli-plugin-react.git"
},
"bugs": {
"url": "https://github.com/h-rica/zcatalyst-cli-plugin-react/issues"
},
"scripts": {
"test:unit": "jest --config jest.config.js",
"lint:src": "eslint --ext .js lib/ --fix --color",
"lint:unit": "eslint --ext .js tests/ --fix --color",
"lint": "run-p lint:src lint:unit",
"test": "npm run test:unit",
"prepare": "npm run lint:src",
"prepublishOnly": "npm run lint:src",
"preversion": "npm run lint:src",
"version": "git add -A lib tests",
"postversion": "git push && git push --tags"
},
"engines": {
"node": ">=12.0.0"
},
"keywords": [
"cli",
"cloud",
"hosting",
"catalyst",
"zoho",
"client",
"zcatalyst",
"react",
"plugin",
"reactjs",
"vite",
"webpack",
"build-tool",
"modernization",
"fork",
"zcatalyst-cli-plugin-react"
],
"author": "Harivonjy Rica <contact.harivonjy@gmail.com>",
"homepage": "https://github.com/h-rica/zcatalyst-cli-plugin-react#readme",
"license": "MIT",
"devDependencies": {
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.4.5",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-scripts": "^5.0.0"
},
"files": [
"lib/**/*",
"README.md",
"LICENSE",
"FORK-NOTICE.md",
"CHANGELOG.md",
"docs/**/*"
],
"peerDependencies": {
"react": ">= 16",
"react-scripts": "^5.0.0",
"typescript": "^3.2.1 || ^4 || ^5",
"vite": "^4.0.0 || ^5.0.0",
"@vitejs/plugin-react": "^4.0.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
},
"react-scripts": {
"optional": true
},
"vite": {
"optional": true
},
"@vitejs/plugin-react": {
"optional": true
}
},
"compatibility": {
"zcatalyst-cli": ">=1.13.2"
},
"buildTools": {
"supported": ["webpack", "vite"],
"default": "webpack"
},
"dependencies": {
"ansi-colors": "^4.1.3",
"dotenv": "^16.0.2",
"dotenv-expand": "^9.0.0",
"filesize": "^8.0.7",
"gzip-size": "^6.0.0",
"strip-ansi": "^6.0.1"
}
}