-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
120 lines (120 loc) · 3.54 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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "@zimbra/zimlet-cli",
"version": "17.2.0",
"description": "Develop, Build, and Package Zimbra X compatible zimlets for development and production.",
"main": "dist/index.js",
"bin": {
"zimlet": "./dist/cli.js"
},
"scripts": {
"build": "npm run build:shims && npm run build:src",
"build:src": "babel src -d dist --copy-files",
"build:shims": "node ./build-shims.js",
"prebuild": "rimraf dist && mkdirp dist",
"test": "npm run lint && npm run build",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"prepublishOnly": "npm run -s test && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags",
"prepare": "is-ci || husky install"
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"add-module-exports",
"@babel/plugin-syntax-dynamic-import",
[
"@babel/plugin-proposal-decorators",
{
"legacy": true
}
],
[
"@babel/plugin-proposal-class-properties",
{
"loose": true
}
],
"@babel/plugin-proposal-export-namespace-from",
"@babel/plugin-proposal-export-default-from"
]
},
"lint-staged": {
"*.js": [
"eslint"
]
},
"engines": {
"node": ">=18.12.0"
},
"devDependencies": {
"@apollo/client": "^3.5.10",
"@babel/cli": "^7.21.0",
"@babel/eslint-parser": "^7.21.3",
"dompurify": "^3.1.6",
"eslint": "^8.38.0",
"eslint-config-synacor": "^3.0.5",
"graphql": "^16.9.0",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"lint-staged": "^13.2.1",
"mkdirp": "^3.0.0",
"mockery": "^2.1.0",
"moment": "^2.29.4",
"preact": "^10.13.2",
"preact-context-provider": "^2.0.0-preactx.2",
"preact-i18n": "^2.4.0-preactx",
"preact-render-to-string": "^5.2.0",
"preact-router": "github:zimbra/preact-router#3.1.1_base_path_support",
"react-redux": "^8.0.5",
"recompose": "^0.30.0",
"redux-actions": "^2.6.5",
"rimraf": "^5.0.0"
},
"license": "GPL-3.0",
"dependencies": {
"@babel/core": "^7.21.4",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.21.0",
"@babel/plugin-proposal-export-default-from": "^7.18.10",
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-object-assign": "^7.18.6",
"@babel/plugin-transform-react-jsx": "^7.21.0",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.21.4",
"@babel/register": "^7.21.0",
"@babel/runtime": "^7.21.0",
"adm-zip": "^0.5.10",
"babel-loader": "^9.1.2",
"babel-plugin-add-module-exports": "^1.0.4",
"bundle-loader": "^0.5.6",
"chalk": "^4.1.2",
"copy-webpack-plugin": "^11.0.0",
"cors": "^2.8.5",
"cross-spawn-promise": "^0.10.2",
"css-loader": "^6.7.3",
"get-port": "^5.1.1",
"gittar": "^0.1.1",
"inquirer": "^8.2.3",
"ip": "^2.0.1",
"less": "^4.1.3",
"less-loader": "^11.1.0",
"log-symbols": "^4.1.0",
"ora": "^5.4.1",
"postcss": "^8.4.39",
"postcss-discard-comments": "^6.0.1",
"postcss-loader": "^8.1.1",
"postcss-preset-env": "^9.3.0",
"progress-bar-webpack-plugin": "^2.1.0",
"raw-loader": "^4.0.2",
"validate-npm-package-name": "^5.0.0",
"webpack": "^5.80.0",
"webpack-cli": "^5.0.2",
"webpack-dev-server": "^4.13.3",
"which": "^4.0.0",
"yargs": "^17.7.1"
}
}