-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.46 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
{
"name": "react-image-croppr",
"version": "1.0.0",
"description": "React Image Cropper using Croppr",
"main": "src/app.jsx",
"scripts": {
"clean": "rimraf dist",
"build:webpack": "cross-env NODE_ENV=production webpack --colors --config webpack.config.prod.js",
"build": "npm run clean && npm run build:webpack",
"start": "node server.js",
"lint": "eslint src/**",
"precommit": "npm run lint"
},
"repository": {
"type": "git",
"url": "https://github.com/stricte/react-image-croppr.git"
},
"keywords": [
"react",
"boilerplate",
"es6",
"croppr"
],
"author": "stricte",
"license": "MIT",
"bugs": {
"url": "https://github.com/stricte/react-image-croppr.git/issues"
},
"homepage": "https://github.com/stricte/react-image-croppr.git",
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.1.6",
"@babel/preset-react": "^7.0.0",
"css-loader": "^1.0.1",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"path": "*",
"react-hot-loader": "^4.5.1",
"rimraf": "^2.6.1",
"style-loader": "^0.23.1",
"webpack": "^4.26.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": ">=3.1.11",
"babel-loader": "*"
},
"dependencies": {
"croppr": "*",
"react": "*",
"react-dom": "*",
"simple-flexbox": "^1.2.0"
},
"config": {
"host": "localhost",
"port": 3000
}
}