forked from tam315/react-compare-image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.07 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
{
"name": "react-compare-image",
"version": "2.0.3",
"description": "React component to compare two images using slider.",
"main": "dist/bundle.js",
"scripts": {
"build": "del-cli dist/**/* && webpack --config ./webpack.production.config.js",
"prepublishOnly": "npm run test && del-cli dist/**/* && npm run build",
"test": "jest",
"test:watch": "jest --watch",
"storybook": "start-storybook -p 6006 -s ./public",
"build-storybook": "build-storybook"
},
"repository": {
"type": "git",
"url": "junkboy0315/react-compare-image"
},
"author": "Shota Tamura",
"license": "MIT",
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
},
"dependencies": {
"css-element-queries": "^1.0.2",
"prop-types": "^15.7.2"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-proposal-object-rest-spread": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-storysource": "^5.2.4",
"@storybook/addons": "^5.1.11",
"@storybook/react": "^5.1.11",
"@testing-library/jest-dom": "^4.1.0",
"@testing-library/react": "^9.1.3",
"all-contributors-cli": "^6.7.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"babel-loader": "^8.0.5",
"babel-polyfill": "^6.26.0",
"del-cli": "^3.0.0",
"eslint": "^6.5.1",
"eslint-config-airbnb": "18.0.1",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.6.4",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.1.2",
"file-loader": "^4.2.0",
"jest": "^24.1.0",
"prettier": "^1.18.2",
"react": ">=16.8",
"react-dom": ">=16.8",
"style-loader": "^1.0.0",
"url-loader": "^2.1.0",
"webpack": "^4.8.3",
"webpack-cli": "3"
},
"keywords": [
"picture comparison",
"image comparison",
"slider",
"react",
"twentytwenty"
]
}