-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.11 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.11 KB
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
{
"name": "react-resize-example",
"version": "0.0.1",
"private": true,
"description": "An example of how to read dimensions of a react component",
"scripts": {
"build": "webpack -p",
"clean": "rimraf public node_modules",
"dev": "webpack-dev-server -d --progress --inline --hot --color --history-api-fallback",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Maruz/react-resize-example.git"
},
"author": "Marius Nielsen <marius.n@outlook.com> (http://www.marius-nielsen.com/)",
"license": "MIT",
"dependencies": {
"babel-polyfill": "^6.26.0",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1"
},
"devDependencies": {
"@storybook/addon-options": "^3.2.6",
"@storybook/react": "^3.2.8",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"html-webpack-plugin": "^2.30.1",
"rimraf": "^2.6.1",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1"
}
}