-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
116 lines (116 loc) · 3.95 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
{
"name": "@hcl-software/enchanted-react-components",
"version": "1.2.0",
"description": "Enchanted React Components is a collection of components that are used in HCL Software products.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Hanjo Hagemeier <[email protected]>",
"license": "Apache-2.0",
"private": false,
"homepage": "https://github.com/HCL-TECH-SOFTWARE/enchanted-react-components#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/HCL-TECH-SOFTWARE/enchanted-react-components.git"
},
"bugs": {
"url": "https://github.com/HCL-TECH-SOFTWARE/enchanted-react-components/issues"
},
"keywords": [
"react",
"material",
"ts"
],
"contributors": [
"Angelo rick Asoy <[email protected]>",
"Ruby ann Matias <[email protected]>",
"Felix Müller <[email protected]>",
"Elsa Pascual <[email protected]>",
"Mridul Shrivastava <[email protected]>",
"Utkarsh Srivastava <[email protected]>"
],
"scripts": {
"build": "tsc",
"lint": "eslint --ext .ts,.tsx src",
"lint-fix": "eslint --ext .ts,.tsx --fix src",
"test-storyshots": "jest --collectCoverage=false --testPathPattern \"__tests__/unit/storyshots-(ltr|rtl).test.ts\"",
"test": "cross-env NODE_ICU_DATA=node_modules/full-icu CI=true jest --config ./jest.config.js --testTimeout=15000 --testPathPattern \"__tests__/(unit|integration)\" --testPathIgnorePatterns \"__tests__/unit/storyshots-(ltr|rtl).test.ts\"",
"test-unit": "CI=true jest --config ./jest.config.js --testPathPattern \"__tests__/unit\" --testTimeout=10000 --testPathIgnorePatterns \"__tests__/unit/storyshots-(ltr|rtl).test.ts\"",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"engines": {
"node": ">=20.x"
},
"dependencies": {
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.11.5",
"@hcl-software/enchanted-icons": "^1.1.0",
"@mui/lab": "5.0.0-alpha.103",
"@mui/material": "5.10.10",
"@mui/system": "5.15.13",
"@mui/x-data-grid": "5.17.8",
"@mui/x-date-pickers": "5.0.4",
"dayjs": "^1.11.10",
"lodash": "^4.17.15",
"stylis-plugin-rtl": "^2.1.1",
"uuid": "^8.3.0"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.10.4",
"@babel/preset-typescript": "^7.23.3",
"@storybook/addon-actions": "^7.6.3",
"@storybook/addon-essentials": "^7.6.3",
"@storybook/addon-interactions": "^7.6.3",
"@storybook/addon-links": "^7.6.3",
"@storybook/addon-themes": "^7.6.3",
"@storybook/react": "^7.6.3",
"@storybook/react-webpack5": "^7.6.3",
"@storybook/testing-library": "0.2.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.0.0",
"@types/jest": "^29.5.10",
"@types/jest-image-snapshot": "^6.4.0",
"@types/lodash": "^4.14.123",
"@types/node": "^22.8.1",
"@types/puppeteer": "^5.4.7",
"@types/react": "^18.2.0",
"@types/stylis": "^4.2.0",
"@types/uuid": "^8.0.0",
"@types/webpack": "^5.28.5",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"babel-loader": "^8.2.5",
"cross-env": "^7.0.3",
"eslint": "^8.11.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^26.9.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-why": "^1.2.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-image-snapshot": "^6.4.0",
"puppeteer": "^13.5.0",
"storybook": "^7.6.3",
"ts-jest": "^29.1.1",
"typescript": "^4.1.5",
"webpack": "^5.89.0"
},
"peerDependencies": {
"react": "^18.2.0"
},
"overrides": {
"stylis-plugin-rtl": {
"stylis": "4.0.13"
}
},
"files": [
"dist/**/*",
"CHANGELOG.md",
"README.md"
]
}