-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.59 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.59 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
{
"name": "react-img-carousel",
"version": "3.0.4",
"description": "Provides an image carousel React component.",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git@github.com:godaddy/react-img-carousel"
},
"author": "GoDaddy Operating Company, LLC",
"contributors": [
"Chris Hinrichs <chinrichs@godaddy.com>"
],
"license": "MIT",
"keywords": [
"react",
"carousel"
],
"bugs": {
"url": "https://github.com/godaddy/react-img-carousel/issues"
},
"homepage": "https://github.com/godaddy/react-img-carousel#readme",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"clean": "rimraf ./lib",
"prebuild": "npm run clean",
"build": "babel src -d lib --extensions '.js,.jsx' && lessc src/carousel.less lib/carousel.css && postcss --no-map --use autoprefixer -o lib/carousel.css lib/carousel.css",
"lint": "eslint --ext .js,.jsx src/ test/",
"lint:fix": "npm run lint -- --fix",
"unit": "vitest run",
"test": "vitest run --coverage",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"posttest": "npm run lint",
"prepublishOnly": "npm run test && npm run build",
"storybook": "storybook dev -p 6006"
},
"peerDependencies": {
"react": "16.x || 17.x || 18.x || 19.x"
},
"dependencies": {
"classnames": "^2.5.1",
"ms": "^2.1.3",
"prop-types": "^15.8.1"
},
"overrides": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.9",
"@babel/plugin-transform-runtime": "^7.26.9",
"@babel/preset-env": "^7.26.9",
"@babel/preset-react": "^7.26.3",
"@storybook/addon-webpack5-compiler-babel": "^4.0.0",
"@storybook/react": "^10.2.8",
"@storybook/react-webpack5": "^10.2.8",
"@svgr/webpack": "^8.1.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"autoprefixer": "^10.4.20",
"babel-loader": "^9.2.1",
"css-loader": "^7.1.2",
"eslint": "^8.57.1",
"eslint-config-godaddy-react": "^9.1.0",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.4",
"happy-dom": "^20.6.1",
"less": "^4.2.2",
"less-loader": "^12.2.0",
"postcss": "^8.5.2",
"postcss-cli": "^11.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^6.0.1",
"storybook": "^10.2.8",
"style-loader": "^4.0.0",
"vitest": "^4.0.18",
"@storybook/addon-docs": "^10.2.8"
}
}