-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.13 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
{
"private": true,
"name": "zimbra-zimlet-zreuweb-modern",
"version": "1.0.0",
"license": "MIT",
"description": "TBD",
"main": "build/index.js",
"module": "src/index.js",
"scripts": {
"build": "zimlet build && cp .netlify/* build",
"watch": "zimlet watch",
"start": "zimlet watch",
"package": "zimlet package --name $npm_package_name --description $npm_package_description --pkg-version $npm_package_version --zimbraXVersion '^2.0.0'",
"lint": "eslint src",
"lint:fix": "npm run lint -- --fix",
"security:audit": "audit-ci --moderate --report"
},
"keywords": [
"zimlet",
"ZimbraX",
"Zimbra"
],
"author": "",
"eslintConfig": {
"extends": "eslint-config-synacor"
},
"devDependencies": {
"@zimbra/zimlet-cli": "^14.0.0",
"audit-ci": "^6.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-synacor": "^3.0.5",
"eslint-plugin-preact-i18n": "^1.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react-hooks": "^4.3.0",
"prettier-eslint": "^13.0.0"
},
"dependencies": {
"redux": "^4.2.1",
"lodash": "^4.17.21"
}
}