-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
42 lines (42 loc) · 1.19 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
{
"name": "react-image-picker",
"version": "1.1.1",
"description": "Picks images from gallery",
"main": "dist/react-image-picker.js",
"scripts": {
"start": "webpack-dev-server --open --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"build-lib": "webpack --config webpack.lib.js"
},
"author": "In Sin <[email protected]>",
"license": "MIT",
"peerDependencies": {
"react": "^0.14.0 || ^16.1.1",
"react-dom": "^0.14.0 || ^16.1.1"
},
"dependencies": {
"immutable": "^3.8.2",
"react": "^16.1.1",
"react-dom": "^16.1.1"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.25.0",
"babel-loader": "^7.0.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"clean-webpack-plugin": "^0.1.17",
"css-loader": "^0.28.4",
"extract-text-webpack-plugin": "^2.1.2",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.28.0",
"node-sass": "^4.5.3",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"uglifyjs-webpack-plugin": "^1.1.0",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.9.4",
"webpack-merge": "^4.1.1"
}
}