-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.21 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
{
"name": "@zendesk/zaf-toolbox",
"version": "0.2.3",
"description": "A toolbox for ZAF application built with 🩷 by Zendesk Labs",
"main": "lib/src/index.js",
"types": "lib/src/index.d.ts",
"scripts": {
"build": "gulp build",
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint src __tests__ --fix",
"test": "jest --coverage",
"test:ci": "jest --coverage --ci --runInBand --verbose",
"prettier": "prettier --check .",
"prettier:fix-all": "prettier --write .",
"prettier:fix": "prettier --write $1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zendesk/zaf-toolbox.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"author": "Zendesk-Labs",
"license": "Apache-2.0",
"files": [
"lib/**",
"!**/*.tsbuildinfo",
"README.md"
],
"_moduleAliases": {
"@models": "lib/models",
"@services": "lib/services",
"@utils": "lib/utils",
"@errors": "lib/errors"
},
"dependencies": {
"@zendeskgarden/react-theming": "^8.76.9",
"react": "^16.14.0"
},
"peerDependencies": {
"@zendesk/sell-zaf-app-toolbox": "github:zendesk/sell-zaf-app-toolbox#v2.0.2"
},
"devDependencies": {
"@eslint/js": "^9.20.0",
"@testing-library/jest-dom": "^6.6.3",
"@types/gulp": "^4.0.17",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.15",
"@types/node": "^22.13.9",
"@types/styled-components": "^5.1.34",
"@typescript-eslint/parser": "^8.25.0",
"del": "^8.0.0",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.0.2",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-jsdoc": "^50.6.3",
"eslint-plugin-prettier": "^5.2.3",
"globals": "^16.0.0",
"gulp": "^5.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.5.3",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"tscpaths": "^0.0.9",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.0"
}
}