-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
111 lines (111 loc) · 3.14 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
{
"name": "@tyk-technologies/tyk-ui",
"version": "4.4.14",
"description": "Tyk UI - ui reusable components",
"main": "src/index.js",
"scripts": {
"start": "npx styleguidist server",
"build-prod": "webpack",
"build": "npx --max_old_space_size=4096 styleguidist build",
"test": "npm run cy:run",
"lint": "eslint ./src",
"stylelint": "stylelint './src/**/*.css'",
"linters": "npm run lint && npm run stylelint",
"styleguide": "styleguidist server",
"styleguide:build": "styleguidist build",
"cy:open": "cypress open --component",
"cy:run": "cypress run --component"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TykTechnologies/tyk-ui.git"
},
"keywords": [
"ui",
"components"
],
"author": "Tyk",
"license": "ISC",
"bugs": {
"url": "https://github.com/TykTechnologies/tyk-ui/issues"
},
"homepage": "https://tyktechnologies.github.io/tyk-ui-styleguide/",
"publishConfig": {
"access": "public"
},
"nyc": {
"all": true,
"include": "src/**/*.js",
"exclude": [
"src/hooks",
"src/utils",
"src/form/components/Combobox",
"src/form/components/Input",
"src/form/components/EditableList",
"src/form/formik",
"src/form/redux-form"
],
"excludeAfterRemap": true
},
"sideEffects": [
"*.css"
],
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/eslint-parser": "7.25.9",
"@babel/preset-env": "7.26.0",
"@babel/preset-react": "7.25.9",
"@cypress/code-coverage": "3.13.6",
"@cypress/react": "8.0.2",
"@cypress/webpack-dev-server": "3.11.0",
"@jsdevtools/coverage-istanbul-loader": "3.0.5",
"css-loader": "7.1.2",
"css-minimizer-webpack-plugin": "7.0.0",
"cypress": "13.15.1",
"esbuild-loader": "4.2.2",
"eslint": "9.14.0",
"eslint-config-airbnb": "19.0.4",
"eslint-plugin-cypress": "4.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.0.0",
"eslint-webpack-plugin": "4.2.0",
"globals": "15.12.0",
"html-webpack-plugin": "5.6.3",
"mini-css-extract-plugin": "2.9.2",
"react-styleguidist": "13.1.3",
"style-loader": "4.0.0",
"stylelint": "16.10.0",
"stylelint-config-standard": "36.0.1",
"stylelint-declaration-block-no-ignored-properties": "2.8.0",
"stylelint-use-logical-spec": "5.0.1",
"webpack": "5.96.1",
"webpack-cli": "5.1.4",
"webpack-dev-server": "5.1.0"
},
"dependencies": {
"ace-builds": "1.36.4",
"brace": "0.11.1",
"copy-webpack-plugin": "12.0.2",
"date-fns": "4.1.0",
"echarts": "5.5.1",
"flatpickr": "4.6.13",
"immutable": "5.0.0",
"lodash": "4.17.21",
"prop-types": "15.8.1",
"react": "18.3.1",
"react-ace": "13.0.0",
"react-datetime": "3.2.0",
"react-datetime-picker": "6.0.1",
"react-dom": "18.3.1",
"react-fast-compare": "3.2.2",
"react-transition-group": "4.4.5"
},
"overrides": {
"eslint": "$eslint",
"eslint-plugin-react-hooks": "$eslint-plugin-react-hooks",
"react": "$react",
"react-dom": "$react-dom"
}
}