-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
113 lines (113 loc) · 3.53 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
{
"name": "@faithlife/styled-ui",
"version": "6.12.5",
"main": "dist/main.js",
"repository": "git@github.com:Faithlife/styled-ui.git",
"license": "MIT",
"description": "UI components for use in Faithlife applications.",
"bin": {
"v6-codemod": "./tools/update-to-v6-codemod/index.js"
},
"publishConfig": {
"tag": "next"
},
"scripts": {
"deploy-site": "yarn run catalog-build && storybook-to-ghpages --ci --existing-output-dir=catalog/build",
"eslint": "eslint ./components ./catalog --ext .js --ext .jsx",
"test": "yarn run test:ci && yarn run eslint && yarn run stylelint",
"precommit": "prettier --write \"./components/**/*.{js,jsx}\" && yarn run stylelint",
"build": "rimraf dist && webpack --mode=none",
"prepublishOnly": "yarn test",
"stylelint": "stylelint ./components/**/*.jsx",
"test:jest": "jest --maxWorkers=50%",
"test:watch": "jest --watch --maxWorkers=25%",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --watch",
"test:ci": "jest --ci --runInBand --coverage --verbose",
"catalog-start": "catalog start",
"catalog-build": "catalog build --public-url /styled-ui",
"catalog-build-netlify": "yarn run prepublishOnly && catalog build",
"cm": "node ./tools/update-to-v6-codemod/index.js"
},
"files": [
"dist/**",
"text-input.js",
"icons/*.js",
"tools/update-to-v6-codemod/**"
],
"browserslist": [
"> 1%",
"IE 11",
"not op_mini all"
],
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0",
"styled-components": "^4 || ^5"
},
"dependencies": {
"@babel/runtime": "^7.17.0",
"@popperjs/core": "^2.11.2",
"@styled-system/prop-types": "^5.1.1",
"@styled-system/theme-get": "^5.1.1",
"clipboard": "^2.0.1",
"faithlife-react-popper": "^2.2.4",
"focus-visible": "^5.0.1",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
"memoize-one": "^5.0.0",
"prop-types": "^15.6.1",
"react-select": "^3.1.1",
"react-transition-group": "^4.4.1",
"styled-system": "^5.1.1"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/eslint-parser": "^7.15.0",
"@babel/eslint-plugin": "^7.14.5",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"@babel/register": "^7.15.3",
"@storybook/storybook-deployer": "^2.8.7",
"@svgr/webpack": "^4.3.3",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.6",
"@testing-library/user-event": "^13.1.9",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^8.0.6",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-react-docgen": "^3.1.0",
"babel-plugin-styled-components": "^1.10.6",
"babel-runtime": "^6.26.0",
"catalog": "^3.5.4",
"chrono-node": "^1.3.5",
"commander": "^7.1.0",
"cross-env": "^5.2.0",
"date-fns": "^2.0.0-alpha.25",
"eslint": "^5.16.0",
"eslint-config-faithlife": "^8.1.0",
"esm": "^3.0.24",
"execa": "^5.0.0",
"jest": "^26.6.3",
"jest-axe": "^4.1.0",
"jscodeshift": "^0.11.0",
"prettier": "^1.17.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-dom-factories": "^1.0.2",
"resize-observer-polyfill": "^1.5.1",
"rimraf": "^2.6.2",
"styled-components": "^5.2.1",
"stylelint": "^10.1.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.8.0",
"webpack": "^4.15.1",
"webpack-cli": "^3.0.8",
"webpack-node-externals": "^1.7.2"
},
"resolutions": {
"babel-core": "7.0.0-bridge.0"
}
}