-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
80 lines (80 loc) · 2.23 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
{
"name": "ac-react-simple-image-slider",
"version": "0.0.9",
"description": "A simple image slider built with React, emotion and hooks",
"author": "abdullahceylan",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/abdullahceylan/ac-react-simple-image-slider.git"
},
"homepage": "https://github.com/abdullahceylan/ac-react-simple-image-slider",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"main": "dist/index.js",
"module": "dist/index.js",
"files": [
"dist"
],
"keywords": [
"react",
"emotion",
"hooks",
"carousel",
"slider",
"slideshow",
"image-gallery",
"gallery",
"animation"
],
"scripts": {
"start": "npm run test:run; react-scripts start",
"build-examples": "react-scripts build",
"test": "jest --watch --no-cache",
"test:react": "react-scripts test --env=jsdom",
"test:run": "jest --coverage",
"eject": "react-scripts eject",
"build": "rimraf dist && NODE_ENV=production babel src/lib --out-dir dist --ignore src/**/__tests__,__tests__,spec.js,test.js,__snapshots__",
"predeploy": "cd example && npm install && npm run build",
"deploy": "gh-pages -d example/build"
},
"peerDependencies": {
"react": "16.8.4"
},
"dependencies": {
"@emotion/core": "^10.0.7",
"@emotion/styled": "^10.0.7",
"styled-tools": "^1.6.0"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-modules-commonjs": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"all-contributors-cli": "^5.4.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "9.0.0",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-react-element-info": "^1.0.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"eslint-plugin-react-hooks": "0.0.0",
"gh-pages": "^2.0.1",
"jest": "^23.6.0",
"lint-staged": "^8.0.4",
"lodash": "^4.17.11",
"react": "16.8.4",
"react-dom": "16.8.4",
"react-scripts": "^2.1.2",
"rimraf": "^2.6.2"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}