-
Notifications
You must be signed in to change notification settings - Fork 92
/
Copy pathpackage.json
134 lines (134 loc) · 4.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "react-alice-carousel",
"version": "2.9.1",
"description": "React image gallery, react slideshow carousel, react content rotator",
"main": "./lib/react-alice-carousel.js",
"types": "./lib/react-alice-carousel.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/maxmarinich/react-alice-carousel.git"
},
"scripts": {
"remove:nm": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +",
"remove:lock": "find . -type f \\( -name 'yarn.lock' -or -name 'package-lock.json' \\) -delete",
"remove:cache": "yarn cache clean --force; npm cache clean --force",
"lint": "eslint ./src/**/**.ts",
"format": "prettier --write ./src/**/**.ts",
"prepare": "npm run build:lib",
"postpublish": "git push --tags",
"precommit": "npm run lint && npm test",
"prepush": "npm run lint && npm test",
"start": "webpack-dev-server --hot -c config/webpack/config.dev.js",
"test": "jest --config jestconfig.json",
"test:watch": "jest --watch --config jestconfig.json",
"test:coverage": "jest --config jestconfig.json --coverage",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build:clear": "rimraf lib && rimraf coverage",
"build:lib": "npm run build:clear && npm run build:types && gulp --gulpfile config/gulp/gulp.config.js",
"build:static": "rimraf lib static; webpack --mode production --config config/webpack/config.static.js",
"build:types": "tsc --emitDeclarationOnly"
},
"keywords": [
"react",
"carousel",
"gallery",
"slider",
"slideshow",
"rotator",
"react-slideshow",
"react-gallery",
"react carousel",
"react slideshow",
"react gallery",
"image gallery",
"image slider",
"image carousel",
"image rotator",
"content gallery",
"content rotator"
],
"author": "Max Marinich",
"maintainers": [
{
"name": "Max Marinich",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/maxmarinich/react-alice-carousel/issues"
},
"homepage": "https://github.com/maxmarinich/react-alice-carousel#readme",
"peerDependencies": {
"react": ">=15.4"
},
"dependencies": {
"vanilla-swipe": "^2.4.1"
},
"devDependencies": {
"@babel/cli": "7.19.3",
"@babel/core": "7.20.2",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-object-rest-spread": "7.20.2",
"@babel/plugin-transform-object-assign": "7.18.6",
"@babel/preset-env": "7.20.2",
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "7.18.6",
"@babel/runtime": "7.20.1",
"@types/d3-ease": "^3.0.2",
"@types/jest": "29.2.3",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.9",
"@types/webpack-env": "1.18.0",
"@typescript-eslint/eslint-plugin": "5.43.0",
"@typescript-eslint/parser": "5.43.0",
"babel-loader": "9.1.0",
"circular-dependency-plugin": "5.2.2",
"copy-webpack-plugin": "11.0.0",
"core-js": "3.26.1",
"css-loader": "6.7.2",
"d3-ease": "^3.0.1",
"eslint": "8.27.0",
"eslint-plugin-react": "7.31.10",
"eslint-webpack-plugin": "^3.2.0",
"gulp": "4.0.2",
"gulp-autoprefixer": "8.0.0",
"gulp-babel": "8.0.0",
"gulp-sass": "5.1.0",
"gulp-typescript": "^6.0.0-alpha.1",
"gulp-uglify": "3.0.2",
"highlight.js": "11.6.0",
"html-loader": "4.2.0",
"html-webpack-plugin": "5.5.0",
"husky": "^4.3.8",
"jest": "29.3.1",
"jest-environment-jsdom": "^29.3.1",
"markdown-loader": "8.0.0",
"marked": "4.2.2",
"mini-css-extract-plugin": "2.7.0",
"nanoid": "^5.0.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"rimraf": "3.0.2",
"sass": "1.56.1",
"sass-loader": "13.2.0",
"style-loader": "3.3.1",
"ts-jest": "29.0.3",
"ts-loader": "9.4.1",
"typescript": "4.8.4",
"webpack": "5.76.0",
"webpack-cli": "5.0.0",
"webpack-dev-server": "4.11.1",
"webpack-merge": "5.8.0"
},
"publishConfig": {
"access": "public"
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit",
"pre-push": "npm run precommit"
}
}
}