forked from BetterTyped/react-zoom-pan-pinch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.01 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
{
"name": "react-zoom-pan-pinch",
"version": "2.1.3",
"description": "Zoom and pan html elements in easy way",
"author": "prc5",
"license": "MIT",
"repository": "prc5/react-zoom-pan-pinch",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"jsnext:main": "dist/index.esm.js",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"test": "react-scripts test --watchAll=false --passWithNoTests",
"build": "rollup -c",
"build:docs": "build-storybook",
"start": "start-storybook -p 6006 --no-manager-cache",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}' --fix",
"prepare": "install-peers && yarn build",
"predeploy": "yarn run build:docs",
"deploy": "gh-pages -d storybook-static",
"test:lint": "eslint src/ --ext .js,.jsx,.tsx,.ts",
"test:prettier": "npm run prettier -check \"**/*.+(js|json|ts|tsx)\""
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/runtime": "^7.13.10",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-typescript": "^8.2.1",
"@storybook/addon-a11y": "^6.3.5",
"@storybook/addon-actions": "^6.3.5",
"@storybook/addon-docs": "^6.3.5",
"@storybook/addon-essentials": "^6.3.5",
"@storybook/addon-links": "^6.3.5",
"@storybook/addon-storysource": "^6.3.5",
"@storybook/preset-create-react-app": "^3.2.0",
"@storybook/react": "^6.3.5",
"@testing-library/react": "^11.2.6",
"@types/jest": "^26.0.22",
"@types/node": "^15.6.1",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"all-contributors-cli": "^6.20.0",
"babel-eslint": "9.0.0",
"babel-loader": "^8.2.2",
"cross-env": "^7.0.3",
"eslint": "^7.23.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-flowtype": "^5.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.23.1",
"gh-pages": "^3.1.0",
"install-peers-cli": "^2.2.0",
"postcss": "^8.2.13",
"prism-react-renderer": "^1.2.1",
"react-scripts": "^4.0.3",
"rollup": "^2.46.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^3.0.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.0",
"source-map-loader": "^2.0.1",
"ts-loader": "^8.1.0",
"typescript": "^4.2.3",
"webpack-cli": "^4.6.0"
},
"files": [
"dist",
"src"
],
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"keywords": [
"react",
"zoom",
"pan",
"pinch",
"animation",
"velocity",
"css",
"fast",
"transformations",
"scale",
"drag",
"viewer",
"reacts",
"touch",
"css3",
"svg",
"bounds",
"context"
]
}