-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.03 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
{
"name": "react-md-fab",
"version": "0.0.1",
"description": "React Component Material Design Floating Action Button.",
"main": "index.js",
"repository": "https://github.com/mcnallydev/react-md-fab.git",
"author": "Paulo McNally <paulomcnally@gmail.com>",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"start": "webpack-dev-server",
"docs": "NODE_ENV=production webpack -p",
"build": "babel src -d dist",
"clean": "rm -rf dist",
"dist": "yarn run clean && yarn run build"
},
"dependencies": {
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"styled-components": "^2.2.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"html-webpack-plugin": "^2.29.0",
"raw-loader": "^0.5.1",
"webpack": "^3.2.0",
"webpack-dev-server": "^2.5.1"
}
}