forked from alronz/carbon-addons-iot-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
202 lines (202 loc) · 6.71 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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
{
"name": "carbon-addons-iot-react",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/IBM/carbon-addons-iot-react.git"
},
"license": "Apache-2",
"files": [
"lib"
],
"bugs": {
"url": "https://github.com/IBM/carbon-addons-iot-react/issues"
},
"homepage": "https://carbon-addons-iot-react.com",
"scripts": {
"build": "yarn build:pre && rollup -c",
"build:pre": "rm -rf lib storybook-static",
"build:storybook": "build-storybook -s public/production",
"format": "prettier --write \"**/*.{scss,css,js,jsx,md,ts}\"",
"format:diff": "prettier --list-different \"**/*.{scss,css,js,jsx,md,ts}\"",
"lint": "yarn lint:javascript && yarn lint:stylelint",
"lint:javascript": "eslint --ext .jsx --ext .js .",
"lint:stylelint": "stylelint './src/**/*.scss' --syntax scss --ignorePath .gitignore",
"prepare": "yarn build",
"start": "yarn storybook",
"storybook": "start-storybook -p 3000 -s public/development",
"test": "jest",
"test:a11y": "jest --testPathPattern='src\\/([^\\s]+)\\/([a-zA-Z0-9\\s_\\\\.\\-\\(\\):])+(\\.test\\.a11y\\.)+(js|jsx)$'",
"test:watch": "jest --watchAll --runInBand --verbose",
"test:update": "jest --updateSnapshot",
"test:clear": "jest --clearCache"
},
"stylelint": {
"extends": "stylelint-config-recommended-scss",
"plugins": [
"stylelint-scss"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn lint-staged && yarn test --silent",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"linters": {
"*.{jsx,js}": [
"eslint --fix"
],
"*.{scss,css}": [
"yarn lint:stylelint"
],
"*.{scss,css,js,md,jsx,json}": [
"yarn format",
"git add"
]
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"@carbon/icons": "^10.4.0",
"@carbon/icons-react": "^10.4.1",
"@carbon/themes": "^10.4.0",
"c3": "^0.7.1",
"carbon-components": "^10.4.1",
"carbon-components-react": "^7.4.1",
"carbon-icons": "^7.0.7",
"classnames": "^2.2.5",
"immutability-helper": "^2.9.0",
"js-file-download": "^0.4.7",
"lodash": "^4.17.13",
"moment": "^2.24.0",
"polished": "^2.3.3",
"prop-types": "^15.7.2",
"react-c3js": "^0.1.20",
"react-dnd": "7.0.2",
"react-dnd-html5-backend": "2.5.1",
"react-dnd-test-backend": "^7.2.0",
"react-grid-layout": "^0.16.6",
"react-resizable": "^1.8.0",
"react-sizeme": "^2.6.3",
"react-transition-group": "^2.6.0",
"react-visibility-sensor": "^5.0.2",
"recompose": "^0.30.0",
"styled-components": "^4.1.3",
"use-deep-compare-effect": "^1.2.0",
"uuid": "^3.3.2",
"warning": "^4.0.3"
},
"peerDependencies": {
"d3": "^4.12.0",
"react": "^16.8.3",
"react-dom": "^16.8.3"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.0.0",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.0.0",
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"@ibma/aat": "https://able.ibm.com/tools/dist/aat.tgz",
"@semantic-release/commit-analyzer": "^6.1.0",
"@semantic-release/git": "^7.0.7",
"@semantic-release/npm": "^5.1.3",
"@semantic-release/release-notes-generator": "^7.1.4",
"@storybook/addon-a11y": "^5.1.7",
"@storybook/addon-actions": "^5.1.7",
"@storybook/addon-info": "5.2.0-alpha.44",
"@storybook/addon-knobs": "^5.1.7",
"@storybook/addon-links": "^5.1.7",
"@storybook/addon-storyshots": "^5.1.7",
"@storybook/addons": "^5.1.7",
"@storybook/react": "^5.1.7",
"autoprefixer": "^9.4.4",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.5",
"babel-plugin-dev-expression": "^0.2.2",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-react-docgen": "^2.0.0",
"babel-plugin-require-context-hook": "^1.0.0",
"babel-plugin-styled-components": "^1.10.0",
"coveralls": "^3.0.2",
"css-loader": "^2.1.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"enzyme-to-json": "^3.3.5",
"eslint": "^5.11.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.1.2",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-lodash": "^5.1.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.2",
"eslint-plugin-react-hooks": "^1.5.0",
"faker": "^4.1.0",
"file-loader": "^4.0.0",
"husky": "^1.3.1",
"jest": "^23.6.0",
"jest-styled-components": "^6.3.1",
"jsdom": "^13.1.0",
"lint-staged": "^8.1.0",
"moment-timezone": "^0.5.26",
"node-sass": "^4.12.0",
"object-assign": "^4.1.1",
"postcss-loader": "^3.0.0",
"prettier": "^1.15.3",
"promise": "^8.0.2",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"react-lorem-component": "^0.13.0",
"react-test-renderer": "^16.8.3",
"rimraf": "^2.6.3",
"rollup": "^1.1.0",
"rollup-plugin-babel": "^4.3.0",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-copy": "^3.1.0",
"rollup-plugin-filesize": "^6.0.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-uglify": "^6.0.1",
"sass-loader": "^7.1.0",
"semantic-release": "^16.0.0-beta.19",
"storybook-addon-rtl": "^0.2.2",
"storybook-readme": "^5.0.5",
"style-loader": "^0.23.1",
"stylelint": "^10.1.0",
"stylelint-config-recommended-scss": "^3.3.0",
"stylelint-scss": "^3.10.0",
"webpack": "^4.28.4",
"whatwg-fetch": "^3.0.0"
},
"version": "0.0.0-development"
}