-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
93 lines (93 loc) · 2.75 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
{
"name": "react-advanced-cropper",
"version": "0.20.0",
"description": "The react cropper library that gives the possibility to create croppers exactly suited for your website design",
"author": "Norserium",
"license": "MIT",
"repository": "advanced-cropper/react-advanced-cropper",
"main": "dist/index.cjs.js",
"unpkg": "dist/index.global.js",
"jsdelivr": "dist/index.global.js",
"module": "dist/index.esm-bundler.js",
"types": "dist/index.d.ts",
"keywords": [
"react",
"cropper",
"library",
"advanced",
"lightweight",
"customizable",
"flex"
],
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"build": "npm run build:clean && npm run build:library && npm run build:themes",
"build:clean": "node scripts/clean.js",
"build:library": "rollup -c",
"build:themes": "node scripts/themes.js",
"start": "rollup -c -w",
"prepare": "npm run build",
"predeploy": "cd example && yarn build",
"deploy": "gh-pages -d example/build",
"test": "jest"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-typescript": "^8.3.0",
"@rollup/plugin-url": "^6.1.0",
"@testing-library/cypress": "^9.0.0",
"@testing-library/react": "12",
"@types/debounce": "^1.2.0",
"@types/jest": "^29.5.0",
"@types/node": "^14.14.7",
"@types/react": "^17.0.58",
"@types/react-dom": "^17.0.19",
"@typescript-eslint/eslint-plugin": "^1.6.0",
"@typescript-eslint/parser": "^1.6.0",
"@wessberg/rollup-plugin-ts": "^1.3.14",
"autoprefixer": "^9.6.1",
"cross-env": "^5.1.4",
"cypress": "^12.9.0",
"eslint-config-prettier": "^4.1.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-react": "^7.10.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-standard": "^3.1.0",
"gh-pages": "^1.2.0",
"jest": "^29.1.0",
"jest-environment-jsdom": "^29.5.0",
"node-sass": "^4.0.0",
"prettier": "^2.4.0",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"rollup": "2.75.7",
"rollup-plugin-postcss": "4.0.1",
"rollup-plugin-scss": "^2.6.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "^5.5.2",
"ts-jest": "^29.1.0",
"typescript": "^4.5.2"
},
"files": [
"dist"
],
"dependencies": {
"advanced-cropper": "~0.17.1",
"classnames": "^2.2.6",
"tslib": "^2.4.0"
},
"sideEffects": ["**/*.css"]
}