forked from Bandwidth/shared-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
150 lines (150 loc) · 5.01 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
{
"name": "@bandwidth/shared-components",
"version": "6.0.5",
"description": "Shared Component Library for Bandwidth React Apps",
"main": "./index.js",
"scripts": {
"test": "cross-env NODE_PATH=src jest --config jestConfig.json --coverage",
"watch": "npm run rollup -- --watch",
"rollup": "cross-env NODE_PATH=src rollup -c",
"build:clean": "rimraf dist",
"build:dev": "cross-env NODE_ENV=development npm run rollup",
"build:prod": "cross-env NODE_ENV=production npm run rollup",
"build": "run-s build:*",
"prepublishOnly": "npm run build",
"styleguide": "cross-env NODE_PATH=src styleguidist server",
"start": "npm run styleguide",
"storybook": "start-storybook -p 9001 -c .storybook",
"layout": "webpack-serve docs/layouts/src/webpack.config.js",
"build-docs:layouts": "webpack --config docs/layoutsExample/webpack.config.js --output-path docsDist/layouts",
"build-docs:core": "cross-env NODE_PATH=src styleguidist build",
"build-docs:v5": "cpy --parents --cwd=docs v5/**/* ../docsDist/",
"build-docs:nojekyll": "touch docsDist/.nojekyll",
"build-docs": "run-p build-docs:*",
"predeploy": "npm run build-docs",
"deploy": "gh-pages -d docsDist --dotfiles"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bandwidth/shared-components.git"
},
"author": "Grant <gaforres@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/Bandwidth/shared-components/issues"
},
"homepage": "https://github.com/Bandwidth/shared-components#readme",
"peerDependencies": {
"prop-types": "15.5.8",
"react": "16.0.0",
"react-dom": "16.0.0",
"styled-components": "4.0.2"
},
"dependencies": {
"animation-timer": "1.0.12",
"change-case": "3.0.2",
"create-react-class": "15.6.3",
"dedent": "0.7.0",
"downshift": "3.1.5",
"flat": "4.1.0",
"functional-easing": "1.0.10",
"hex-to-hsl": "1.0.2",
"lodash.debounce": "4.0.8",
"lodash.defaultsdeep": "4.6.0",
"lodash.filter": "4.6.0",
"lodash.get": "4.4.2",
"lodash.identity": "3.0.0",
"lodash.isfunction": "3.0.9",
"lodash.isplainobject": "4.0.6",
"lodash.isstring": "4.0.1",
"lodash.mapvalues": "4.6.0",
"lodash.noop": "3.0.1",
"lodash.omit": "4.5.0",
"lodash.padend": "4.6.1",
"lodash.partition": "4.6.0",
"lodash.pick": "4.4.0",
"lodash.throttle": "4.1.1",
"react-addons-shallow-compare": "15.6.2",
"react-autosuggest": "9.4.2",
"react-collapse": "4.0.3",
"react-dates": "18.2.2",
"react-dnd": "2.6.0",
"react-dnd-html5-backend": "2.6.0",
"react-dropzone": "3.13.4",
"react-motion": "0.5.2",
"react-popper": "1.0.2",
"react-select": "1.3.0",
"react-transition-group": "2.5.0",
"recompose": "0.26.0",
"time-input": "1.6.1",
"warning": "3.0.0"
},
"devDependencies": {
"@babel/core": "7.1.2",
"@babel/plugin-proposal-class-properties": "7.1.0",
"@babel/plugin-proposal-object-rest-spread": "7.0.0",
"@babel/plugin-transform-runtime": "7.1.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "7.1.0",
"@babel/preset-react": "7.0.0",
"@babel/runtime": "7.1.2",
"@storybook/addon-actions": "3.4.11",
"@storybook/addon-links": "3.4.11",
"@storybook/react": "4.0.0-rc.2",
"babel-loader": "8.0.4",
"babel-plugin-inline-react-svg": "1.0.0",
"babel-plugin-module-resolver": "3.1.1",
"babel-plugin-styled-components": "1.8.0",
"connect-history-api-fallback": "1.5.0",
"cpy-cli": "2.0.0",
"cross-env": "5.2.0",
"css-loader": "1.0.1",
"enzyme": "2.9.1",
"enzyme-to-json": "1.6.0",
"file": "0.2.2",
"file-loader": "1.1.11",
"gh-pages": "2.0.1",
"google-fonts-webpack-plugin": "0.4.4",
"history": "4.7.2",
"html-webpack-plugin": "3.2.0",
"husky": "0.14.3",
"identity-obj-proxy": "3.0.0",
"jest": "20.0.4",
"jest-enzyme": "3.8.3",
"jest-styled-components": "3.3.2",
"jsdom": "11.12.0",
"jsdom-global": "3.0.2",
"koa-connect": "2.0.1",
"lint-staged": "5.0.0",
"lodash.some": "4.6.0",
"lorem-ipsum": "1.0.6",
"markdown-to-jsx": "6.7.4",
"npm-run-all": "4.1.5",
"object-assign": "4.1.1",
"postcss-loader": "2.1.6",
"prettier": "1.15.2",
"react": "16.6.3",
"react-docgen": "3.0.0-rc.1",
"react-docgen-annotation-resolver": "1.1.0",
"react-dom": "16.6.3",
"react-router-dom": "4.3.1",
"react-styleguidist": "8.0.0",
"react-syntax-highlighter": "9.0.1",
"react-test-renderer": "15.6.2",
"react-x-ray": "1.0.0-4",
"resize-observer": "1.0.0-alpha.1",
"rimraf": "2.6.2",
"rollup": "0.66.6",
"rollup-plugin-babel": "4.0.3",
"rollup-plugin-commonjs": "9.2.0",
"rollup-plugin-node-resolve": "3.4.0",
"rollup-plugin-replace": "2.1.0",
"style-loader": "0.21.0",
"styled-components": "4.0.2",
"verbal-expressions": "0.3.0",
"webpack": "4.26.1",
"webpack-command": "0.4.2",
"webpack-serve": "2.0.3"
},
"gitHead": "c26b853f3b89860fc104f3bdece69a011c1a87c9"
}