-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.32 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.32 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "react-laybox",
"version": "0.1.4",
"private": false,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --mode production",
"start": "webpack --mode development --watch",
"prepublishOnly": "npm run build",
"publish": "npm-publish-git-tag",
"start-demo": "webpack-dev-server --env demo --mode development",
"build-demo": "webpack --env demo --mode production",
"deploy-demo": "gh-pages -d demo/build",
"publish-demo": "npm run build-demo && npm run deploy-demo",
"lint": "eslint . && sass-lint -vq"
},
"dependencies": {},
"peerDependencies": {
"prop-types": "^15.5.10",
"react": "^16.8.2"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.2.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"css-loader": "^2.1.0",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-import-resolver-meteor": "^0.4.0",
"eslint-plugin-class-property": "^1.1.0",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-meteor": "^5.1.0",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-straightforward": "0.0.1",
"gh-pages": "^2.0.1",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.11.0",
"npm-publish-git-tag": "^3.0.3",
"postcss-loader": "^3.0.0",
"prop-types": "^15.5.10",
"react": "^16.8.2",
"react-container-dimensions": "^1.4.1",
"react-dom": "^16.8.3",
"sass-lint": "^1.12.1",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1"
},
"author": {
"name": "monkeydri",
"email": "monkeydri@github.com"
},
"keywords": [
"react",
"layout",
"flexbox"
],
"main": "build/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/monkeydri/react-laybox"
},
"description": "Set of react components to build any layout with ease, mostly based on CSS flexbox",
"bugs": {
"url": "https://github.com/monkeydri/react-laybox/issues"
},
"homepage": "https://github.com/monkeydri/react-laybox"
}