-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
165 lines (165 loc) · 6.34 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
{
"name": "@openbricksandbraces/webcomponents",
"version": "0.0.9",
"description": "Webcomponents for the Bricks & Braces brand.",
"repository": "git://github.com/bricksandbraces/webcomponents.git",
"scripts": {
"cy:open": "cypress open",
"cy:run": "cypress run",
"generate-barrels": "barrelsby -D --exclude \".*.stories.tsx\" -d ./src --include \"src/components/.*\"",
"storybook": "start-storybook -p 6006",
"start:storybook": "http-server -s -p 6006 ./storybook-static",
"build:storybook": "build-storybook",
"build:local": "yarn build:package && yalc publish",
"build:package": "rimraf lib/ && yarn build:esm && yarn build:cjs && yarn build:css",
"build:css-clean": "rimraf lib/styles && yarn build:css",
"build:css": "postcss src/styles/index.css --ext .css --dir lib/styles/dist/ && cp -R src/styles/ lib/styles/postcss",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir lib/cjs ",
"test": "jest --passWithNoTests",
"format:fix": "DEBUG=eslint:cli-engine eslint --fix --cache --cache-strategy content . && prettier --write . && stylelint \"**/*.?(p)css\" --fix --formatter verbose",
"format:check": "DEBUG=eslint:cli-engine eslint --cache --cache-strategy content . && prettier --check . && stylelint \"**/*.?(p)css\" --formatter verbose",
"task:generate-pcss-theme": "ts-node -P tasks/tsconfig.json tasks/generate-pcss-theme.ts && stylelint \"src/styles/theme.pcss\" --fix --formatter verbose",
"publish:bb": "yarn npm publish --tag latest",
"publish:patch": "yarn version patch && git checkout main && git add . && git commit -m 'Automatic release' && git push && yarn build:package && yarn publish:bb",
"publish:minor": "yarn version minor && git checkout main && git add . && git commit -m 'Automatic release' && git push && yarn build:package && yarn publish:bb",
"publish:major": "yarn version major && git checkout main && git add . && git commit -m 'Automatic release' && git push && yarn build:package && yarn publish:bb"
},
"publishConfig": {
"registry": "https://registry.npmjs.com"
},
"browserslist": "last 2 versions",
"engines": {
"node": ">=16.X"
},
"main": "./lib/cjs/src/index.js",
"module": "./lib/esm/src/index.js",
"types": "./lib/esm/src/index.d.ts",
"files": [
"lib"
],
"resolutions": {
"react": "17.0.2",
"react-dom": "17.0.2",
"@babel/core": "7.13.15",
"@babel/preset-env": "7.13.15"
},
"peerDependencies": {
"react": "^17.X",
"react-dom": "^17.X"
},
"dependencies": {
"@openbricksandbraces/designsystem": "^1.0.6",
"@openbricksandbraces/designtokens": "^0.0.8",
"@openbricksandbraces/eloguent": "^0.1.2",
"@storybook/addon-a11y": "^6.4.22",
"@storybook/addon-actions": "^6.4.22",
"@storybook/addon-essentials": "^6.4.22",
"@storybook/addon-knobs": "^6.4.0",
"@storybook/addon-links": "^6.4.22",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/addons": "^6.4.22",
"@storybook/api": "^6.4.22",
"@storybook/builder-webpack5": "^6.4.22",
"@storybook/components": "^6.4.22",
"@storybook/core-events": "^6.4.22",
"@storybook/manager-webpack5": "^6.4.22",
"@storybook/react": "^6.4.22",
"@storybook/theming": "^6.4.22",
"@tabler/icons": "^1.67.0",
"@tippyjs/react": "^4.2.6",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.7",
"classnames": "^2.3.1",
"color": "^4.2.3",
"cssnano": "^5.1.7",
"cypress": "^9.6.0",
"date-fns": "^2.28.0",
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.6.2",
"lodash": "^4.17.21",
"lottie-web": "^5.9.3",
"object-hash": "^2.2.0",
"rc-slider": "^9.7.5",
"react-day-picker": "^7.4.10",
"react-focus-lock": "^2.8.1",
"react-merge-refs": "^1.1.0",
"react-outside-click-handler": "^1.3.0",
"react-ticker": "^1.3.2",
"react-use": "^17.3.2",
"storybook": "^6.4.22",
"storybook-dark-mode": "^1.0.9",
"tippy.js": "^6.3.7",
"uuid": "^8.3.2",
"webpack-bundle-analyzer": "^4.5.0"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@types/color": "^3.0.3",
"@types/enzyme": "^3.10.12",
"@types/jest": "^27.4.1",
"@types/lodash": "^4.14.182",
"@types/node": "^16.11.29",
"@types/object-hash": "^2.2.1",
"@types/prop-types": "^15.7.5",
"@types/react": "^17.0.44",
"@types/react-dom": "^17.0.16",
"@types/react-outside-click-handler": "^1.3.1",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"autoprefixer": "^10.4.5",
"babel-loader": "^8.2.5",
"barrelsby": "^2.3.4",
"browserslist": "^4.20.3",
"copyfiles": "^2.4.1",
"cypress-plugin-snapshots": "^1.4.4",
"eslint": "^8.14.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.1.5",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"eslint-plugin-storybook": "^0.5.11",
"http-server": "^14.1.0",
"husky": "^7.0.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^28.0.1",
"postcss": "^8.4.12",
"postcss-calc": "^8.2.4",
"postcss-cli": "^9.1.0",
"postcss-each": "^1.1.0",
"postcss-each-variables": "^0.3.0",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-hexrgba": "github:hudochenkov/postcss-hexrgba#migrate-to-postcss-8",
"postcss-import": "^14.1.0",
"postcss-mixins": "^9.0.2",
"postcss-nested": "^5.0.6",
"postcss-preset-env": "^7.4.3",
"postcss-simple-vars": "^6.0.3",
"postcss-size": "^4.0.1",
"postcss-utilities": "^0.8.4",
"postcss-viewport-height-correction": "^1.1.1",
"prettier": "^2.6.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"style-loader": "^3.3.1",
"stylelint": "^14.7.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-property-sort-order-smacss": "^9.0.0",
"stylelint-config-standard": "^25.0.0",
"stylelint-prettier": "^2.0.0",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.3",
"webpack": "^5.72.0"
},
"license": "UNLICENSED",
"author": "[email protected]",
"packageManager": "[email protected]"
}