This repository has been archived by the owner on Aug 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
234 lines (234 loc) · 8.43 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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
{
"name": "@helpscout/hsds-react",
"version": "3.58.0",
"private": false,
"main": "dist/index.js",
"module": "dist/index.es.js",
"license": "MIT",
"description": "React component library for Help Scout's Design System",
"repository": {
"type": "git",
"url": "git+https://github.com/helpscout/hsds-react.git"
},
"author": "Jon Quach <hello@jonquach.com>",
"contributors": [
"Nickolas Kenyeres <nickolas@knicklabs.com>",
"Maxi Ferreira <charca@gmail.com>",
"Tom Graham",
"Tom O'Connor",
"Brett Jones <brettjonesdev@gmail.com>",
"Lauren Brown",
"Pierre-Luc Babin",
"Buzz Usborne <hello@buzzusborne.com>",
"Juan Pablo Lomeli Diaz <juanpablo@thetinkertrain.codes>",
"Terrence L. Jones <terrenceljones805@gmail.com>",
"Ryan Mulrooney",
"Alisdair McDiarmid",
"Jakub Janczyk"
],
"scripts": {
"build-storybook": "build-storybook",
"prebuild": "npm run colorway",
"build:es2015": "cross-env NODE_ENV=production babel ./src --ignore **/__tests__,**/*.stories.js,**/*.test.js --out-dir ./dist",
"build:es2015modules": "cross-env NODE_ENV=production BABEL_ENV=modules babel ./src/index.js --out-file ./dist/index.es.js",
"build:copy-files": "babel-node ./scripts/copy-files",
"build:js": "SC_ATTR=HSDS-react npm run build:es2015 && npm run build:es2015modules && npm run build:copy-files",
"build": "npm run clean && npm run build:js",
"coverage": "nyc report --temp-directory=coverage --reporter=text-lcov | coveralls",
"colorway": "colorway --manifest=hsds-react",
"cypress": "$(npm bin)/cypress",
"cy": "npm run cypress",
"cy:run": "npm run cy -- run",
"cy:open": "npm run cy -- open",
"clean": "rimraf public && rimraf dist && mkdir dist",
"dev": "npm run test:dev",
"jest": "node scripts/test.js --env=jsdom ",
"lint": "eslint src/**/*.js src/**/*.jsx --cache",
"open": "open ./",
"open:coverage": "open ./coverage/lcov-report/index.html",
"open:cov": "npm run open:coverage",
"open:pr": "open https://github.com/helpscout/hsds-react/pulls",
"open:prs": "npm run open:pr",
"open:issues": "open https://github.com/helpscout/hsds-react/issues",
"open:release": "open https://github.com/helpscout/hsds-react/releases",
"open:releases": "npm run open:release",
"new:issue": "open https://github.com/helpscout/hsds-react/issues/new",
"new:pr": "open https://github.com/helpscout/hsds-react/compare",
"pretty": "npm run prettier",
"remake:component": "remake component --output=src/components",
"remake": "remake component --output=src/components",
"release": "np --no-yarn --contents=./dist",
"release:patch": "npm run release -- patch",
"release:beta": "npm run release -- --yolo --any-branch",
"snapshot": "npm run storybook:build && percy-storybook --widths=1280 --build_dir=public",
"start": "npm run storybook",
"storybook": "SC_ATTR=HSDS-react start-storybook -p 8900 --ci",
"storybook:ci": "npm run storybook -- --ci",
"storybook:build": "SC_ATTR=HSDS-react NODE_ENV=production build-storybook -c .storybook -o public",
"storybook:clean": "rimraf public",
"test": "npm run test:coverage -- --silent",
"test:cy": "start-server-and-test start http-get://localhost:8900 cy:run",
"test:all": "npm run test && npm run test:cy",
"test:coverage": "npm run test:dev -- --coverage",
"test:dev": "node scripts/test.js --env=jsdom",
"test:coverage:fast": "npm run test:coverage -- --onlyChanged",
"version": "npm run make:version && git add . && npm run build",
"prettier:base": "prettier \"src/**/*.js\" \"test/**/*.js\" \"stories/**/*.js\"",
"prettier": "npm run prettier:base -- --write",
"update:icons": "node ./scripts/update-icons.js",
"process:icons": "node ./scripts/process-icons.js",
"make:version": "node ./scripts/make-version.js"
},
"peerDependencies": {
"react": "^16.13.1 || ^17.0.0",
"react-dom": "^16.13.1 || ^17.0.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"styled-components": "5.1.1"
},
"dependencies": {
"@datepicker-react/hooks": "^2.7.0",
"@helpscout/hsds-illos": "1.9.0",
"@helpscout/motion": "0.0.8",
"@helpscout/react-utils": "^2.4.0",
"@helpscout/wedux": "0.0.11",
"@juggle/resize-observer": "^3.3.1",
"@tippyjs/react": "4.2.6",
"array-move": "2.1.0",
"chalk": "^1.1.3",
"classnames": "^2.3.1",
"compute-scroll-into-view": "1.0.11",
"downshift": "^6.1.1",
"execa": "^4.0.0",
"fast-deep-equal": "^2.0.1",
"globby": "^11.0.0",
"inquirer": "^7.0.4",
"invariant": "2.2.4",
"is-git-clean": "^1.1.0",
"jscodeshift": "^0.7.0",
"lodash.debounce": "^4.0.8",
"lodash.get": "^4.4.2",
"lodash.isfunction": "^3.0.9",
"lodash.isnil": "^4.0.0",
"lodash.isnumber": "^3.0.3",
"lodash.isplainobject": "^4.0.6",
"lodash.isstring": "^4.0.1",
"lodash.throttle": "^4.1.1",
"meow": "^6.0.1",
"path-to-regexp": "2.4.0",
"prismjs": "^1.25.0",
"react-frame-component": "4.1.1",
"react-sortable-hoc": "^1.10.0",
"react-textarea-autosize": "^7.1.0",
"react-transition-group": "^2.5.3",
"simplebar-react": "^2.3.6",
"use-deep-compare-effect": "^1.6.1",
"warning": "4.0.3"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/node": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.4.3",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@helpscout/colorway": "0.10.0",
"@helpscout/helix": "0.2.0",
"@helpscout/prestart": "^0.0.9",
"@storybook/addon-a11y": "6.3.12",
"@storybook/addon-actions": "6.3.12",
"@storybook/addon-docs": "6.3.12",
"@storybook/addon-knobs": "6.3.1",
"@storybook/addon-links": "6.3.12",
"@storybook/addons": "6.3.12",
"@storybook/cli": "6.3.12",
"@storybook/react": "6.3.12",
"@storybook/theming": "6.3.12",
"@testing-library/jest-dom": "5.15.1",
"@testing-library/react": "^11.0.4",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^12.1.5",
"@types/enzyme": "^3.1.14",
"@types/jest": "^26.0.4",
"@types/jscodeshift": "^0.11.3",
"@types/react": "^16.4.14",
"@types/react-dom": "^16.0.8",
"@types/react-transition-group": "^2.0.14",
"@welldone-software/why-did-you-render": "^6.2.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^26.1.0",
"babel-loader": "^8.0.0",
"babel-plugin-inline-react-svg": "^1.1.1",
"babel-plugin-prismjs": "^2.0.1",
"babel-plugin-styled-components": "^1.10.6",
"babel-plugin-tester": "^9.2.0",
"confusing-browser-globals": "^1.0.7",
"coveralls": "3.0.9",
"cross-env": "5.1.0",
"cypress": "^4.11.0",
"dotenv": "^8.2.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^4.1.0",
"fs-extra": "^3.0.1",
"glob": "^7.1.3",
"husky": "4.2.5",
"jest": "^26.1.0",
"jest-watch-typeahead": "^0.3.0",
"np": "^7.6.1",
"nyc": "^15.0.0",
"prettier": "2.0.5",
"pretty-quick": "^2.0.1",
"prop-types": "^15.7.2",
"re-resizable": "^6.9.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-hotkeys-hook": "^3.4.4",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"remake-cli": "0.0.7",
"rimraf": "3.0.2",
"sinon": "^5.0.10",
"slugify": "^1.3.1",
"start-server-and-test": "^1.10.11",
"storybook-addon-designs": "^6.2.0",
"string.prototype.replaceall": "^1.0.5",
"styled-components": "5.1.1",
"stylelint": "^13.6.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-prettier": "^1.1.1",
"stylelint-processor-styled-components": "^1.8.0",
"svgo": "^1.2.0",
"webpack": "^4.43.0",
"yargs": "^13.2.2"
},
"optionalDependencies": {
"fsevents": "2.1.3"
},
"nyc": {
"exclude": [
"config/**/*.js",
"dist/**/*.js",
"scripts/**/*.js",
"stories/**/*.js"
],
"cache": false
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"bin": {
"hsds-codemod": "./codemod/hsds-codemod.js"
}
}