-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.43 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.43 KB
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
{
"name": "react-cropper-custom",
"version": "1.2.7",
"description": "A React component to crop images with interactions",
"homepage": "https://react-cropper-custom-demo.vercel.app/",
"repository": {
"type": "git",
"url": "https://github.com/catca/react-cropper-custom"
},
"keywords": [
"react",
"crop",
"cropper",
"image crop"
],
"author": "catca",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"license": "MIT",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"build": "rollup -c",
"watch": "rollup -cw",
"format": "prettier --check ./src",
"format:fix": "prettier --write ./src",
"lint": "eslint ./src",
"lint:fix": "eslint --fix ./src"
},
"eslintIgnore": [
"jest.config.js",
".eslintrc.js",
"rollup.config.js",
"mocks/styleMock.js"
],
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"devDependencies": {
"@cfaester/enzyme-adapter-react-18": "^0.6.0",
"@rollup/plugin-alias": "^3.1.9",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.2.1",
"@rollup/plugin-typescript": "^8.3.2",
"@testing-library/jest-dom": "^5.16.4",
"@types/enzyme": "^3.10.12",
"@types/normalize-wheel": "^1.0.0",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"enzyme": "^3.11.0",
"eslint": "^8.14.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-functional": "^4.2.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.4.1",
"postcss": "^8.4.12",
"prettier": "^2.6.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^2.70.2",
"rollup-plugin-dts": "^4.2.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"ts-jest": "^27.1.4",
"tslib": "^2.4.0",
"typescript": "^4.6.3"
},
"peerDependencies": {
"react": ">=17.0.2",
"react-dom": ">=17.0.2"
},
"dependencies": {
"normalize-wheel": "^1.0.1"
}
}