forked from BetterTyped/react-zoom-pan-pinch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
139 lines (139 loc) · 3.87 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
135
136
137
138
139
{
"name": "react-zoom-pan-pinch",
"version": "0.0.0",
"description": "Zoom and pan html elements in easy way",
"author": "prc5",
"license": "MIT",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"build:docs": "build-storybook",
"start": "DISABLE_ESLINT_PLUGIN=true start-storybook -p 6006 --no-manager-cache",
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.tsx,.ts --fix",
"format": "prettier --write .",
"typecheck": "tsc --noEmit --emitDeclarationOnly false",
"prepare": "install-peers && yarn build",
"predeploy": "yarn run build:docs",
"deploy": "gh-pages -d storybook-static",
"release": "yarn semantic-release"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/runtime": "^7.20.13",
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.2",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-typescript": "^8.2.1",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.6",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@storybook/addon-a11y": "^6.5.16",
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-docs": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/addon-storysource": "^6.5.16",
"@storybook/builder-webpack5": "^6.5.16",
"@storybook/manager-webpack5": "^6.5.16",
"@storybook/preset-create-react-app": "4.1.2",
"@storybook/react": "^6.5.16",
"@testing-library/dom": "^8.20.0",
"@testing-library/react": "^13.4.0",
"@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": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"babel-eslint": "9.0.0",
"babel-loader": "^8.2.2",
"commitlint": "^17.0.2",
"cross-env": "^7.0.3",
"eslint": "^8.17.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.6.0",
"gh-pages": "^3.1.0",
"install-peers-cli": "^2.2.0",
"jest-css-modules": "^2.1.0",
"jest-extended": "^3.2.0",
"postcss": "^8.2.13",
"prism-react-renderer": "^1.2.1",
"react": "*",
"react-dom": "*",
"react-scripts": "5.0.1",
"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",
"semantic-release": "^19.0.5",
"source-map-loader": "^2.0.1",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.2",
"ts-node": "~10.9.1",
"typescript": "^4.2.3",
"webpack": "5",
"webpack-cli": "^5.0.1"
},
"engines": {
"node": ">=8",
"npm": ">=5"
},
"config": {
"commitizen": {
"path": "git-cz"
}
},
"repository": {
"type": "git",
"url": "https://github.com/prc5/react-zoom-pan-pinch.git"
},
"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"
]
}