-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
30 lines (30 loc) · 828 Bytes
/
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
{
"name": "react-localstorage-sync",
"version": "0.0.6",
"description": "A higher order component that sync localStorage and components state",
"main": "dist/withLocalStorage.js",
"license": "MIT",
"scripts": {
"build": "NODE_ENV=production webpack",
"prepublish": "npm run build"
},
"peerDependencies": {
"prop-types": "^15.3.0",
"react": "^15.3.0 || ^16.0.0",
"react-dom": "^15.3.0 || ^16.0.0"
},
"dependencies": {
"prop-types": "^15.3.0",
"react": "^15.3.0 || ^16.0.0",
"react-dom": "^15.3.0 || ^16.0.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"uglifyjs-webpack-plugin": "^1.2.0",
"webpack": "^3.11.0"
}
}