-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.4 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
{
"name": "flex-react",
"version": "1.3.1",
"description": "A lightweight React component library to build flex-based grids.",
"main": "dist/index.js",
"module": "src/index.js",
"scripts": {
"build": "webpack -p --env=prod",
"start": "webpack-dev-server --env=dev",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zcallan/flex-react.git"
},
"keywords": [
"react",
"flex",
"flexbox",
"grid"
],
"author": "Callan Delbridge <[email protected]> (http://kaln.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/zcallan/flex-react/issues"
},
"homepage": "https://github.com/zcallan/flex-react#readme",
"dependencies": {
"prop-types": "^15.5.10"
},
"devDependencies": {
"autoprefixer": "^6.7.7",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-1": "^6.22.0",
"clean-webpack-plugin": "^0.1.16",
"css-loader": "^0.28.4",
"extract-text-webpack-plugin": "^2.1.2",
"html-webpack-plugin": "^2.29.0",
"node-sass": "^4.5.3",
"postcss-loader": "^2.0.6",
"react-dom": "^15.6.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"webpack": "^3.3.0",
"webpack-dev-server": "^2.5.1"
},
"peerDependencies": {
"react": "~0.14.8 || ^15.0.0"
}
}