@maxio-com/self-service 1.2.0 → 1.3.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 (1) hide show
  1. package/package.json +16 -3
package/package.json CHANGED
@@ -5,21 +5,26 @@
5
5
  "module": "dist/maxio-components.esm.js",
6
6
  "browser": "dist/maxio-components.umd.js",
7
7
  "types": "typings/sdk/components-sdk/src/index.d.ts",
8
- "version": "1.2.0",
8
+ "version": "1.3.0",
9
9
  "scripts": {
10
10
  "test": "jest",
11
11
  "test:coverage": "jest --coverage",
12
12
  "storybook": "start-storybook -p 6006",
13
13
  "build-storybook": "build-storybook",
14
- "prettier": "prettier --write '{sdk,packages}/**/*.{js,ts,tsx,json}'",
14
+ "prettier": "prettier --write '{sdk,packages,e2e}/**/*.{js,ts,tsx,json}'",
15
15
  "commit": "npx git-cz",
16
16
  "clean": "npx rimraf dist",
17
+ "serve:e2e-assets": "npx serve e2e_pages/ -l 7001 --cors",
18
+ "copy:e2e-assets": "node e2e/prepareAssets.js",
19
+ "clean:e2e-assets": "npx rimraf e2e_pages/locales e2e_pages/*.js",
20
+ "upload:e2e-results": "node e2e/uploadExecutionResults.js",
17
21
  "build": "pnpm run clean && pnpm run build:browser && pnpm run build:modules",
18
22
  "build:modules": "npx rollup --configPlugin @rollup/plugin-typescript --config rollup.config.ts",
19
23
  "build:browser": "npx webpack --config webpack.browser.js",
20
24
  "dpdm": "npx dpdm packages/**/**/*.{ts,tsx} -T --exit-code circular:1 --no-warning --no-tree",
21
25
  "lint": "eslint --quiet --ext .ts --ext .tsx packages/ sdk/",
22
- "release": "npx semantic-release"
26
+ "release": "npx semantic-release",
27
+ "e2e": "node e2e/run.js"
23
28
  },
24
29
  "files": [
25
30
  "dist",
@@ -34,6 +39,7 @@
34
39
  "@commitlint/cli": "^13.1.0",
35
40
  "@commitlint/config-conventional": "^13.1.0",
36
41
  "@mdx-js/react": "^1.6.22",
42
+ "@playwright/test": "^1.29.2",
37
43
  "@quickbaseoss/babel-plugin-styled-components-css-namespace": "^1.0.1",
38
44
  "@rollup/plugin-babel": "^5.3.1",
39
45
  "@rollup/plugin-commonjs": "^22.0.2",
@@ -52,6 +58,7 @@
52
58
  "@testing-library/jest-dom": "^5.16.5",
53
59
  "@testing-library/react": "^13.4.0",
54
60
  "@testing-library/user-event": "^13.5.0",
61
+ "@types/ejs": "^3.1.1",
55
62
  "@types/jest": "^29.0.3",
56
63
  "@types/node": "^17.0.45",
57
64
  "@types/testing-library__jest-dom": "^5.14.5",
@@ -63,7 +70,10 @@
63
70
  "browserslist": "^4.21.4",
64
71
  "commitizen": "^4.2.5",
65
72
  "csstype": "^3.1.1",
73
+ "cz-conventional-changelog": "^3.3.0",
74
+ "dotenv": "^16.0.3",
66
75
  "dpdm": "^3.10.0",
76
+ "ejs": "^3.1.8",
67
77
  "eslint": "^8.17.0",
68
78
  "eslint-config-prettier": "^8.3.0",
69
79
  "eslint-plugin-prettier": "^4.0.0",
@@ -80,6 +90,8 @@
80
90
  "lint-staged": "^11.1.2",
81
91
  "mockdate": "^3.0.5",
82
92
  "msw": "^0.36.7",
93
+ "node-fetch-commonjs": "^3.2.4",
94
+ "playwright": "^1.29.2",
83
95
  "prettier": "^2.4.0",
84
96
  "react": "^18.2.0",
85
97
  "react-dom": "^18.2.0",
@@ -91,6 +103,7 @@
91
103
  "rollup-plugin-typescript2": "^0.32.1",
92
104
  "semantic-release": "^19.0.3",
93
105
  "semantic-release-cli": "^5.4.4",
106
+ "serve": "^14.1.2",
94
107
  "styled-components": "^5.3.5",
95
108
  "styled-system": "^5.1.5",
96
109
  "ts-dedent": "^2.2.0",