-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
98 lines (98 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
97
98
{
"name": "@magicsoup.io/stock",
"description": "The stock for our react component library soup. - 100% veggie & gluten-free",
"version": "0.0.14",
"author": "zauberware",
"license": "MIT",
"main": "dist/index.js",
"contributors": [
{
"name": "Simon Franzen",
"email": "[email protected]",
"url": "https://www.zauberware.com"
},
{
"name": "Philipp Siegmund",
"email": "[email protected]"
}
],
"scripts": {
"start": "styleguidist server",
"prepublishOnly": "npm run build",
"styleguide": "styleguidist build",
"build": "rm -rf dist/ && webpack",
"lint": "eslint src",
"jest": "jest -u --env=jsdom",
"test": "run-s lint jest",
"size": "npx bundlesize"
},
"dependencies": {
"styled-system": "^3.2.1",
"styled-components": "^4.0.1"
},
"devDependencies": {
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"css-loader": "^0.28.7",
"enzyme": "^3.7.0",
"eslint": "^5.7.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-flowtype": "^3.2.1",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.12.4",
"husky": "^1.1.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.0.0",
"npm-run-all": "^4.1.3",
"prop-types": "^15.6.2",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"react-scripts": "^2.1.3",
"react-styleguidist": "^8.0.1",
"react-test-renderer": "^16.6.0",
"style-loader": "^0.23.1",
"styled-components": "^4.0.1",
"webpack-cli": "^3.2.3"
},
"peerDependencies": {
"react": "^16.6.0",
"react-dom": "^16.6.0",
"styled-system": "^3.2.1",
"styled-components": ">=4.0.0"
},
"bugs": "https://github.com/magicsoup-io/magicsoup-stock/issues",
"keywords": [
"reactjs",
"react",
"components",
"component-library",
"react component-library",
"styled-components",
"styled-system",
"styleguidist"
],
"repository": {
"type": "git",
"url": "https://github.com/magicsoup-io/magicsoup-stock.git"
},
"husky": {
"hooks": {
"pre-push": "npm test"
}
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less|sass|scss|postcss)$": "identity-obj-proxy"
},
"collectCoverage": true
},
"bundlesize": [
{
"path": "./dist/*.js",
"maxSize": "2.2 kB"
}
]
}