@spothero/ui 18.0.5-beta.0 → 19.0.0-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +0 -0
  2. package/package.json +28 -31
package/README.md CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spothero/ui",
3
- "version": "18.0.5-beta.0",
3
+ "version": "19.0.0-beta.0",
4
4
  "description": "SpotHero's React component UI library.",
5
5
  "main": "./dist/components/index.js",
6
6
  "exports": "./dist/components/index.js",
@@ -53,10 +53,32 @@
53
53
  }
54
54
  ]
55
55
  },
56
+ "scripts": {
57
+ "clean": "rm -rf docs v2 lib styles coverage || true",
58
+ "lint": "eslint .storybook src --ext .jsx,.js",
59
+ "start": "NODE_OPTIONS=--openssl-legacy-provider start-storybook -p 6006",
60
+ "test": "npm run test:unit",
61
+ "test:template": "NODE_ENV=test jest --config ./jest.config.json",
62
+ "test:unit": "npm run test:template -- --coverage",
63
+ "test:unit:watch": "DEBUG_PRINT_LIMIT=-1 npm run test:template -- --watch",
64
+ "build:v2": "BABEL_ENV=production babel src -d dist",
65
+ "build": "npm run clean && npm run build:v2",
66
+ "build:storybook": "build-storybook -o ./docs/v2",
67
+ "release": "npm-release",
68
+ "publish-storybook": "npm run build:storybook && push-dir --dir=docs/v2 --branch=gh-pages --allow-unclean"
69
+ },
56
70
  "devDependencies": {
57
71
  "@babel/cli": "7.14.5",
58
72
  "@babel/core": "7.14.6",
59
73
  "@babel/runtime-corejs3": "7.14.7",
74
+ "@spothero/babel-preset-spothero": "*",
75
+ "@spothero/browserslist-config": "*",
76
+ "@spothero/core": "*",
77
+ "@spothero/eslint-config": "*",
78
+ "@spothero/icons": "*",
79
+ "@spothero/npm-publisher": "*",
80
+ "@spothero/prettier-config": "*",
81
+ "@spothero/stylelint-config": "*",
60
82
  "@storybook/addon-actions": "6.5.16",
61
83
  "@storybook/addon-essentials": "6.5.16",
62
84
  "@storybook/addon-links": "6.5.16",
@@ -72,11 +94,10 @@
72
94
  "classnames": "2.2.6",
73
95
  "eslint-loader": "4.0.2",
74
96
  "get-contrast-ratio": "0.2.1",
75
- "jest": "28.1.2",
97
+ "jest": "26.6.3",
76
98
  "jest-chain": "1.1.5",
77
- "jest-environment-jsdom": "28.1.2",
78
99
  "jest-date-mock": "1.0.8",
79
- "jest-extended": "3.2.4",
100
+ "jest-extended": "0.11.5",
80
101
  "jest-watch-typeahead": "0.6.1",
81
102
  "lodash": "4.17.21",
82
103
  "moment": "2.29.4",
@@ -92,17 +113,7 @@
92
113
  "regenerator-runtime": "0.13.7",
93
114
  "start-server-and-test": "1.12.6",
94
115
  "style-loader": "1.2.1",
95
- "webpack-merge": "5.1.4",
96
- "css-loader": "5.1.3",
97
- "sass-loader": "10.2.1",
98
- "@spothero/babel-preset-spothero": "3.0.1-beta.0",
99
- "@spothero/browserslist-config": "2.0.1-beta.0",
100
- "@spothero/core": "5.0.1-beta.0",
101
- "@spothero/eslint-config": "4.0.2-beta.0",
102
- "@spothero/icons": "5.0.9-beta.0",
103
- "@spothero/npm-publisher": "5.0.1",
104
- "@spothero/prettier-config": "2.1.1-beta.0",
105
- "@spothero/stylelint-config": "4.0.1-beta.0"
116
+ "webpack-merge": "5.1.4"
106
117
  },
107
118
  "dependencies": {
108
119
  "@chakra-ui/react": "1.8.8",
@@ -111,14 +122,14 @@
111
122
  "@emotion/react": "11.1.5",
112
123
  "@emotion/styled": "11.1.5",
113
124
  "@faker-js/faker": "7.6.0",
125
+ "@spothero/utils": "*",
114
126
  "@storybook/addon-a11y": "6.5.16",
115
127
  "core-js": "3.6.5",
116
128
  "framer-motion": "4.1.17",
117
129
  "react-select": "5.4.0",
118
130
  "regenerator-runtime": "0.13.7",
119
131
  "ssr-window": "1.0.1",
120
- "transitionEnd": "1.0.2",
121
- "@spothero/utils": "10.4.2-beta.0"
132
+ "transitionEnd": "1.0.2"
122
133
  },
123
134
  "peerDependencies": {
124
135
  "classnames": "^2.2.6",
@@ -128,19 +139,5 @@
128
139
  "react-dom": "17.0.2",
129
140
  "react-redux": ">=7.0.0",
130
141
  "redux": ">=4.0.0"
131
- },
132
- "scripts": {
133
- "clean": "rm -rf docs v2 lib styles coverage || true",
134
- "lint": "eslint .storybook src --ext .jsx,.js",
135
- "start": "start-storybook -p 6006",
136
- "test": "pnpm run test:unit",
137
- "test:template": "NODE_ENV=test jest --config ./jest.config.json",
138
- "test:unit": "pnpm run test:template",
139
- "test:unit:watch": "DEBUG_PRINT_LIMIT=-1 pnpm run test:template -- --watch",
140
- "build:v2": "BABEL_ENV=production babel src -d dist",
141
- "build": "pnpm run clean && pnpm run build:v2",
142
- "build:storybook": "build-storybook -o ./docs/v2",
143
- "release": "npm-release",
144
- "publish-storybook": "pnpm run build:storybook && push-dir --dir=docs/v2 --branch=gh-pages --allow-unclean"
145
142
  }
146
143
  }