-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
96 lines (96 loc) · 2.55 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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@aaronuu/react-layout",
"version": "0.2.0",
"description": "Layout components for react",
"main": "dist/index.js",
"module": "dist/react-layout.esm.js",
"author": "Aaron Williams",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/aaronnuu/react-layout"
},
"keywords": [
"react",
"emotion",
"grid",
"flexbox"
],
"scripts": {
"analyze": "size-limit --why",
"reinstall": "rimraf node_modules && yarn",
"prebuild": "rimraf dist",
"build": "rollup -c && size-limit",
"precommit": "lint-staged",
"prepublishOnly": "yarn build"
},
"dependencies": {
"fast-memoize": "^2.5.1",
"lodash.omit": "^4.5.0",
"lodash.pick": "^4.4.0",
"lodash.reduce": "^4.6.0"
},
"peerDependencies": {
"@emotion/core": "^10.0.6",
"react": ">=16.3.0"
},
"devDependencies": {
"@emotion/babel-preset-css-prop": "^10.0.6",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-jest": "^23.4.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"eslint": "^5.1.0",
"eslint-config-standard": "^12.0.0-alpha.0",
"eslint-config-standard-react": "^6.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-react": "^7.10.0",
"eslint-plugin-standard": "^3.1.0",
"husky": "^0.14.3",
"jest": "^23.4.1",
"jest-dom": "^1.8.1",
"lint-staged": "^7.2.0",
"prettier": "^1.13.7",
"prettier-eslint-cli": "^4.7.1",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-testing-library": "^4.1.2",
"rimraf": "^2.6.2",
"rollup": "^0.62.0",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-filesize": "^2.0.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-uglify": "^4.0.0",
"size-limit": "^0.18.5"
},
"lint-staged": {
"*.js": [
"prettier-eslint --write --eslintPath=node_modules/eslint --prettierPath=node_modules/prettier",
"git add"
]
},
"size-limit": [
{
"path": "./dist/index.js",
"limit": "10 kB"
},
{
"path": "./dist/react-layout.esm.js",
"limit": "10 kB"
},
{
"path": "./dist/react-layout.umd.production.js",
"limit": "10 kB"
}
]
}