forked from pedrocostadev/react-carousel-query
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.71 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.71 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
{
"name": "react-carousel-query",
"version": "1.0.0",
"description": "A infinite carousel component made with react that handles the pagination for you.",
"keywords": [
"React",
"Carousel",
"Infinite",
"Query",
"Slides"
],
"main": "dist/index.js",
"repository": "https://github.com/pedrocostadev/react-carousel-query.git",
"author": "Pedro Costa <pedro.costa.dev@gmail.com>",
"license": "MIT",
"bin": "./node_modules/.bin/",
"scripts": {
"build": "webpack --mode production",
"build:dev": "webpack --mode development",
"build:component": "babel src -d dist --copy-files",
"start": "webpack serve --mode production",
"start:dev": "webpack serve --mode development",
"lint": "eslint src --ext .js",
"lint:fix": "yarn run lint --fix",
"format": "prettier --write src",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --collect-coverage",
"prepublishOnly": "yarn run build:component",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@storybook/addon-actions": "^6.2.9",
"@storybook/addon-essentials": "^6.2.9",
"@storybook/addon-links": "^6.2.9",
"@storybook/react": "^6.2.9",
"@testing-library/react": "^11.2.3",
"@testing-library/react-hooks": "^5.0.3",
"babel-loader": "^8.2.2",
"babel-plugin-module-resolver": "^4.1.0",
"copy-webpack-plugin": "^7.0.0",
"css-loader": "^5.2.7",
"dotenv-webpack": "^6.0.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"html-webpack-plugin": "^5.6.3",
"husky": "^4.3.8",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"prop-types": "^15.7.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"storybook-css-modules-preset": "^1.1.1",
"style-loader": "^2.0.0",
"webpack": "^5.97.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0",
"@storybook/addon-postcss": "^2.0.0"
},
"dependencies": {
"classnames": "^2.2.6"
},
"peerDependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn test"
}
},
"engines": {
"node": "20.x.x"
}
}