@wise/dynamic-flow-client 3.2.0-beta-bb84b6.40 → 3.2.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 +25 -25
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wise/dynamic-flow-client",
3
- "version": "3.2.0-beta-bb84b6.40",
3
+ "version": "3.2.0",
4
4
  "description": "Dynamic Flow web client",
5
5
  "license": "Apache-2.0",
6
6
  "main": "./build/main.min.js",
@@ -18,25 +18,6 @@
18
18
  "fullname": "transferwise/dynamic-flow",
19
19
  "url": "git+https://github.com/transferwise/dynamic-flow.git"
20
20
  },
21
- "scripts": {
22
- "dev": "storybook dev -p 3003",
23
- "build": "rm -rf build && npm-run-all build:*",
24
- "build:types": "tsc --project ./tsconfig.types.json",
25
- "build:js": "node ./scripts/build.mjs",
26
- "build:css": "postcss src/main.css -o build/main.css",
27
- "build:messages-source": "formatjs extract 'src/**/{*.messages,messages}.{js,ts}' --out-file src/i18n/en.json --format simple && prettier --find-config-path --write src/i18n/*.json",
28
- "build:compiled-messages": "mkdir -p build/i18n && cp src/i18n/*.json build/i18n",
29
- "test": "npm-run-all test:once test:tz",
30
- "test:once": "jest --config jest.config.js --env=jsdom -w 2",
31
- "test:coverage": "jest --config jest.config.js --env=jsdom --coverage",
32
- "test:tz": "TZ=US/Pacific jest ./src/legacy/jsonSchemaForm/basicTypeSchema/BasicTypeSchema.errors.spec.jsx ./src/legacy/formControl/FormControl.spec.jsx",
33
- "test:watch": "pnpm test:once --watch",
34
- "types": "pnpm tsc",
35
- "lint": "npm-run-all lint:ts lint:css",
36
- "lint:ts": "eslint 'src/**/*.{js,jsx,ts,tsx}' --quiet",
37
- "lint:css": "stylelint './src/**/*.css'",
38
- "build-storybook": "storybook build -c .storybook --disable-telemetry"
39
- },
40
21
  "devDependencies": {
41
22
  "@babel/core": "7.24.0",
42
23
  "@babel/plugin-syntax-flow": "7.23.3",
@@ -72,7 +53,6 @@
72
53
  "@types/testing-library__jest-dom": "5.14.9",
73
54
  "@wise/art": "2.9.2",
74
55
  "@wise/components-theming": "^0.8.4",
75
- "@wise/dynamic-flow-fixtures": "workspace:*",
76
56
  "@wise/forms": "0.3.1",
77
57
  "babel-jest": "29.7.0",
78
58
  "currency-flags": "4.0.7",
@@ -96,7 +76,8 @@
96
76
  "stylelint-no-unsupported-browser-features": "5.0.4",
97
77
  "stylelint-value-no-unknown-custom-properties": "6.0.1",
98
78
  "typescript": "4.9.5",
99
- "webpack": "5.90.3"
79
+ "webpack": "5.90.3",
80
+ "@wise/dynamic-flow-fixtures": "0.0.1"
100
81
  },
101
82
  "peerDependencies": {
102
83
  "@transferwise/components": "^46.10",
@@ -108,9 +89,28 @@
108
89
  "react-intl": "^6"
109
90
  },
110
91
  "dependencies": {
111
- "@wise/dynamic-flow-types": "2.8.0",
112
92
  "classnames": "2.5.1",
113
93
  "react-webcam": "^7.2.0",
114
- "screenfull": "^5.2.0"
94
+ "screenfull": "^5.2.0",
95
+ "@wise/dynamic-flow-types": "2.9.0"
96
+ },
97
+ "scripts": {
98
+ "dev": "storybook dev -p 3003",
99
+ "build": "rm -rf build && npm-run-all build:*",
100
+ "build:types": "tsc --project ./tsconfig.types.json",
101
+ "build:js": "node ./scripts/build.mjs",
102
+ "build:css": "postcss src/main.css -o build/main.css",
103
+ "build:messages-source": "formatjs extract 'src/**/{*.messages,messages}.{js,ts}' --out-file src/i18n/en.json --format simple && prettier --find-config-path --write src/i18n/*.json",
104
+ "build:compiled-messages": "mkdir -p build/i18n && cp src/i18n/*.json build/i18n",
105
+ "test": "npm-run-all test:once test:tz",
106
+ "test:once": "jest --config jest.config.js --env=jsdom -w 2",
107
+ "test:coverage": "jest --config jest.config.js --env=jsdom --coverage",
108
+ "test:tz": "TZ=US/Pacific jest ./src/legacy/jsonSchemaForm/basicTypeSchema/BasicTypeSchema.errors.spec.jsx ./src/legacy/formControl/FormControl.spec.jsx",
109
+ "test:watch": "pnpm test:once --watch",
110
+ "types": "pnpm tsc",
111
+ "lint": "npm-run-all lint:ts lint:css",
112
+ "lint:ts": "eslint 'src/**/*.{js,jsx,ts,tsx}' --quiet",
113
+ "lint:css": "stylelint './src/**/*.css'",
114
+ "build-storybook": "storybook build -c .storybook --disable-telemetry"
115
115
  }
116
- }
116
+ }