forked from codypearce/material-bread
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 3.91 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "material-bread",
"version": "0.2.10",
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest -w 1 --forceExit",
"ios": "react-native run-ios --simulator='iPhone X'",
"lint": "./node_modules/.bin/eslint './src'",
"storybook": "storybook start -p 7007",
"storybook-web": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -c .storybook -s ./public -o gh",
"deploy-docs": "gh-pages -d gh",
"test:generate-output": "jest --json --outputFile=.jest-test-results.json || true",
"see-npm-package": "npm pack && tar -xvzf *.tgz && rm -rf package *.tgz",
"build-package": "babel src --out-dir dist --ignore \"**/*.test.js\" && cp src/index.d.ts dist/index.d.ts",
"build-site": "cd docs && npm i && npm run build"
},
"dependencies": {
"@babel/runtime": "^7.5.5",
"color": "^3.1.0",
"react-native-vector-icons": "^6.2.0",
"modal-enhanced-react-native-web": "^0.2.0"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.3.4",
"@babel/plugin-transform-flow-strip-types": "^7.2.3",
"@babel/plugin-transform-runtime": "^7.5.5",
"@sambego/storybook-state": "^1.3.4",
"@storybook/addon-a11y": "^5.0.6",
"@storybook/addon-actions": "^5.0.6",
"@storybook/addon-backgrounds": "^5.0.6",
"@storybook/addon-console": "^1.1.0",
"@storybook/addon-google-analytics": "^5.0.6",
"@storybook/addon-jest": "^ 5.0.6",
"@storybook/addon-links": "^5.0.6",
"@storybook/addon-storyshots": "^5.0.6",
"@storybook/addon-storysource": "^5.0.6",
"@storybook/addon-viewport": "^5.0.6",
"@storybook/react": "^5.0.6",
"@storybook/react-native": "^4.1.16",
"@storybook/theming": "^5.0.6",
"babel-eslint": "^10.0.1",
"babel-plugin-module-resolver": "^3.2.0",
"babel-preset-expo": "^5.0.0",
"babel-preset-react-app": "^7.0.1",
"core-js": "^2.6.1",
"eslint": "^5.12.1",
"eslint-config-prettier": "3.6.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "3.0.1",
"eslint-plugin-react": "^7.12.4",
"gh-pages": "^2.0.1",
"husky": "^1.3.1",
"jest": "^23.6.0",
"metro-react-native-babel-preset": "^0.52.0",
"modal-enhanced-react-native-web": "^0.2.0",
"modal-react-native-web": "^0.2.0",
"prettier": "1.16.0",
"react": "16.6.3",
"react-art": "^16.8.3",
"react-dom": "^16.8.6",
"react-native": "^0.59.10",
"react-native-svg": "^9.5.3",
"react-native-web": "^0.11.2",
"react-test-renderer": "16.6.3"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-vector-icons": "*",
"react-dom": "16.8.1",
"react-native-web": "0.11.2",
"react-native-svg": "^9.5.3"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"jest": {
"preset": "react-native",
"transformIgnorePatterns": [
"/node_modules/(?!(react-native|react-native-swipe-gestures|react-native-vector-icons|react-native-svg)/)"
],
"testMatch": [
"<rootDir>/**/*.test.js"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js"
}
},
"keywords": [
"react native",
"material design",
"component library",
"ui kit",
"react",
"ios",
"android",
"web",
"electron"
],
"description": "Highly customizable React Native Material Design Components.",
"homepage": "http://material-bread.org",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/codypearce/material-bread.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/codypearce/material-bread/issues"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}