-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.93 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
{
"name": "react-simple-crop",
"version": "1.0.2",
"description": "A simple and light-weight library of React components for cropping images",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "npm run clean && npx webpack --mode production",
"build:storybook": "build-storybook",
"clean": "rm -rf './dist'",
"cypress:open": "cypress open",
"dev": "npm run clean && npx webpack --mode development",
"format": "prettier --write './{cypress,src,stories}/**/*.{js,jsx,ts,tsx}'",
"format:check": "prettier --check './{cypress,src,stories}/**/*.{js,jsx,ts,tsx}'",
"lint": "eslint './src/**/*.{js,jsx,ts,tsx}'",
"prepare": "npm run build",
"storybook": "start-storybook -p 6006"
},
"files": [
"/dist"
],
"keywords": [
"react",
"typescript",
"image",
"photo",
"crop"
],
"author": "John Flockton",
"license": "MIT",
"repository": "https://github.com/thegreatercurve/react-simple-crop",
"devDependencies": {
"@babel/core": "^7.7.2",
"@storybook/addon-actions": "^5.2.6",
"@storybook/addon-viewport": "^5.2.6",
"@storybook/addons": "^5.2.6",
"@storybook/react": "^5.2.6",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.8.5",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^5.0.5",
"css-loader": "^2.1.1",
"cypress": "^3.7.0",
"eslint": "^6.7.2",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"mini-css-extract-plugin": "^0.7.0",
"node-sass": "^4.12.0",
"prettier": "^1.16.4",
"sass-loader": "^7.2.0",
"style-loader": "^0.23.1",
"ts-loader": "^6.0.4",
"typescript": "^3.5.3",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.10"
},
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
}
}