forked from mkosir/react-parallax-tilt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
123 lines (123 loc) · 3.96 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
{
"name": "react-parallax-tilt",
"description": "Easily apply tilt hover effect on React components - lightweight/zero dependencies",
"version": "0.0.0-development",
"main": "./dist/index.umd.js",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"start": "npm run storybook",
"prepare": "husky install",
"build": "shx rm -rf dist && rollup -c",
"lint": "eslint --max-warnings 0 .",
"lint-fix": "eslint --fix .",
"lint-staged-husky": "lint-staged",
"tsc": "tsc -p tsconfig.dev.json",
"format-lint": "prettier --config .prettierrc --check --ignore-unknown .",
"format-fix": "prettier --config .prettierrc --write --ignore-unknown -l .",
"commit": "git-cz",
"test": "jest --verbose --watch",
"test-coverage": "jest --coverage --verbose",
"storybook": "TS_NODE_PROJECT=tsconfig.dev.json start-storybook -p 9009",
"storybook-build": "build-storybook",
"semantic-release": "semantic-release --branches main",
"demozap": "demozap generate --prefix=_ && npm run format-fix && npm run lint-fix",
"clean": "shx rm -rf node_modules coverage dist compiled"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-typescript": "^8.5.0",
"@storybook/addons": "^6.5.12",
"@storybook/builder-webpack5": "^6.5.12",
"@storybook/manager-webpack5": "^6.5.12",
"@storybook/react": "^6.5.12",
"@storybook/theming": "^6.5.12",
"@testing-library/dom": "^8.18.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/eslint": "^8.4.6",
"@types/jest": "^29.1.2",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"codecov": "^3.8.3",
"commitizen": "^4.2.5",
"demozap": "^1.3.42",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.1",
"eslint-plugin-jest-dom": "^4.0.2",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-no-array-reduce": "^1.0.62",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.4",
"eslint-plugin-testing-library": "^5.7.2",
"husky": "^8.0.1",
"jest": "^29.1.2",
"jest-config": "^29.1.2",
"jest-environment-jsdom": "^29.1.2",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"react": "^18.2.0",
"react-demo-tab": "^1.3.8",
"react-dom": "^18.2.0",
"react-joystick-component": "^4.0.1",
"rollup": "^2.79.1",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-size-snapshot": "^0.12.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "^5.8.2",
"sass": "^1.55.0",
"sass-loader": "^13.1.0",
"semantic-release": "^19.0.5",
"shx": "^0.3.4",
"ts-jest": "^29.0.3",
"tsc-files": "^1.1.3",
"typescript": "^4.8.4"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0"
},
"license": "MIT",
"author": "Marko Kosir <[email protected]>",
"homepage": "https://mkosir.github.io/react-parallax-tilt",
"repository": {
"type": "git",
"url": "git+https://github.com/mkosir/react-parallax-tilt.git"
},
"bugs": {
"url": "https://github.com/mkosir/react-parallax-tilt/issues"
},
"keywords": [
"react",
"react-component",
"react-tilt",
"react-parallax-tilt",
"parallax",
"tilt",
"glare",
"transform",
"rotate",
"scale",
"flip",
"effect",
"component",
"gyroscope",
"sensor",
"mirror"
]
}