-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.13 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.13 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
{
"name": "@zendesk/zaf-toolbox",
"version": "1.6.0",
"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",
"prepare": "npm run build"
},
"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"
},
"devDependencies": {
"@eslint/js": "^9.39.0",
"@testing-library/jest-dom": "^6.9.1",
"@types/gulp": "^4.0.18",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.20",
"@types/node": "^24.9.1",
"@types/styled-components": "^5.1.36",
"@typescript-eslint/parser": "^8.49.0",
"del": "^8.0.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-jsdoc": "^61.1.12",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.5.0",
"gulp": "^5.0.1",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"prettier": "^3.7.4",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"tscpaths": "^0.0.9",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.2"
}
}