forked from akiran/react-slick
-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
143 lines (143 loc) · 4.26 KB
/
package.json
File metadata and controls
143 lines (143 loc) · 4.26 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
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "@ant-design/react-slick",
"version": "2.0.0",
"description": " React port of slick carousel",
"main": "./lib",
"module": "./es",
"types": "./types.d.ts",
"files": [
"dist",
"lib",
"es",
"types.d.ts"
],
"scripts": {
"start": "NODE_OPTIONS=--openssl-legacy-provider gulp server",
"demo": "SINGLE_DEMO=true DEV_PORT=8000 NODE_OPTIONS=--openssl-legacy-provider gulp server",
"build-dev": "gulp clean && gulp copy && webpack",
"es": "ESMODULES=true babel ./src --out-dir ./es",
"lib": "babel ./src --out-dir ./lib",
"compile": "NODE_OPTIONS=--openssl-legacy-provider npm run lib && NODE_OPTIONS=--openssl-legacy-provider npm run es && NODE_OPTIONS=--openssl-legacy-provider gulp dist",
"prepublishOnly": "npm run compile && np --no-cleanup --no-publish",
"lint": "eslint src",
"gen": "node docs/scripts/generateExampleConfigs.js && node docs/scripts/generateExamples.js && xdg-open docs/jquery.html",
"precommit": "lint-staged",
"test": "jest",
"test-watch": "jest --watch",
"clear-jest": "jest --clearCache",
"test-ct": "npm run prepare-playwright && playwright test -c playwright-ct.config.js",
"test-clear": "jest --clearCache && rm -rf ./playwright/.cache",
"prepare-playwright": "rm -rf ./src-jsx && gulp prepare-playwright"
},
"author": "Kiran Abburi",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ant-design/react-slick"
},
"keywords": [
"slick",
"carousel",
"Image slider",
"orbit",
"slider",
"react-component"
],
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.3",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-transform-runtime": "^7.10.4",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@playwright/experimental-ct-react": "^1.49.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.3.0",
"@types/node": "^22.10.2",
"@types/react": "^19.2.7",
"autoprefixer": "^7.1.2",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.4",
"babel-preset-airbnb": "^5.0.0",
"css-loader": "^5.0.0",
"deepmerge": "^1.1.0",
"del": "^2.2.2",
"es5-shim": "^4.5.9",
"eslint": "^8.4.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-react": "^7.27.1",
"express": "^4.14.0",
"foundation-apps": "^1.2.0",
"gulp": "^4.0.0",
"gulp-rename": "^2.0.0",
"husky": "^0.14.3",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"jquery": "^3.7.1",
"js-beautify": "^1.7.5",
"json-loader": "^0.5.4",
"lint-staged": "^12.1.2",
"np": "^8.0.4",
"opn": "^5.4.0",
"postcss-loader": "^1.3.3",
"prettier": "^2.1.2",
"raf": "^3.4.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"regenerator-runtime": "^0.14.1",
"sinon": "^2.1.0",
"slick-carousel": "^1.8.1",
"style-loader": "^0.16.1",
"typescript": "^5.5.4",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.21.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9",
"why-did-you-update": "^0.1.1"
},
"dependencies": {
"@babel/runtime": "^7.28.4",
"clsx": "^2.1.1",
"json2mq": "^0.2.0",
"throttle-debounce": "^5.0.0"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.1 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^0.14.0 || ^15.0.1 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"lint-staged": {
"*.{js,json,md}": [
"prettier --write",
"git add"
]
},
"npmName": "@ant-design/react-slick",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
],
"bugs": {
"url": "https://github.com/ant-design/react-slick/issues"
},
"homepage": "https://react-slick.neostack.com",
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/react-slick",
"logo": "https://opencollective.com/opencollective/logo.txt"
},
"publishConfig": {
"access": "public"
},
"overrides": {
"@types/minimatch": "5.1.2"
}
}