-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.5 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.5 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
{
"name": "react-styled-grid",
"version": "3.0.2",
"description": "A responsive fluid grid system built with styled-components that uses Row and Column approach.",
"main": "dist/Grid.js",
"files": [
"dist",
"docs",
"src",
"LICENSE",
"README.md",
"webpack.config.js",
"yarn.lock"
],
"scripts": {
"dev": "webpack-dev-server --mode development --port 8000",
"test": "jest",
"build": "webpack --mode production",
"prepublish": "rimraf dist && babel --out-dir dist --ignore *.spec.js src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ihenvyr/react-styled-grid.git"
},
"keywords": [
"react",
"styled-components",
"responsive",
"grid",
"foundation"
],
"author": "Henry C. Cruz <ihenvyr@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ihenvyr/react-styled-grid/issues"
},
"homepage": "https://github.com/ihenvyr/react-styled-grid#readme",
"dependencies": {
"styled-components": "5.0.1"
},
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/core": "7.8.6",
"@babel/preset-env": "7.8.6",
"@babel/preset-react": "7.8.3",
"babel-jest": "25.1.0",
"babel-loader": "8.0.6",
"jest": "25.1.0",
"react": "16.13.0",
"react-dom": "16.13.0",
"react-test-renderer": "16.13.0",
"rimraf": "3.0.2",
"webpack": "4.41.6",
"webpack-cli": "3.3.11",
"webpack-dev-server": "3.10.3"
},
"peerDependencies": {
"styled-components": ">=5.0.0"
}
}