@allthings/structured-ticket-form 4.0.2 → 5.0.0-dev1

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.
package/package.json CHANGED
@@ -1,13 +1,22 @@
1
1
  {
2
2
  "name": "@allthings/structured-ticket-form",
3
- "version": "4.0.2",
3
+ "version": "5.0.0-dev1",
4
4
  "description": "Simple component to create and edit jsonSchemaForm with possibility to adding translated fields and custom UISchema.",
5
5
  "main": "lib/index.js",
6
+ "targets": {
7
+ "main": false
8
+ },
9
+ "browserslist": "> 0.5%, last 2 versions, not dead",
6
10
  "private": false,
7
11
  "repository": {
8
12
  "type": "git",
9
13
  "url": "git+https://github.com/allthings/structured-ticket-form"
10
14
  },
15
+ "engines": {
16
+ "node": ">=18.16",
17
+ "npm": ">=8",
18
+ "yarn": "^1.22"
19
+ },
11
20
  "author": "Allthings",
12
21
  "license": "MIT",
13
22
  "bugs": {
@@ -15,22 +24,22 @@
15
24
  },
16
25
  "homepage": "https://github.com/allthings/structured-ticket-form/#readme",
17
26
  "scripts": {
18
- "build:sandbox": "snowpack build --polyfill-node",
27
+ "build:sandbox": "parcel build src/index.html --no-cache",
19
28
  "build": "ttsc --build tsconfig.build.json",
20
29
  "lint": "eslint 'src/**/*.{js,ts,tsx}'",
21
30
  "prebuild": "rimraf lib",
22
- "prepare": "husky install",
31
+ "prepare": "husky",
23
32
  "prettier": "prettier --write",
24
33
  "preversion": "yarn lint",
25
34
  "release": "yarn build && yarn publish --new-version $npm_package_version --tag latest --access public && git push --tags origin HEAD",
26
35
  "security-check": "yarn audit --groups dependencies --level high || test $? -lt 7",
27
- "start": "snowpack dev --polyfill-node",
36
+ "start": "parcel src/index.html --no-cache --open",
28
37
  "test": "jest --passWithNoTests",
29
38
  "test:watch": "jest --watch",
30
39
  "up": "yarn upgrade-interactive --latest --exact"
31
40
  },
32
41
  "resolutions": {
33
- "@types/react": "17.0.75",
42
+ "@types/react": "17.0.80",
34
43
  "@types/react-dom": "17.0.25"
35
44
  },
36
45
  "dependencies": {
@@ -49,27 +58,30 @@
49
58
  },
50
59
  "devDependencies": {
51
60
  "@allthings/eslint-config": "2.1.1",
52
- "@commitlint/cli": "18.6.1",
53
- "@commitlint/config-conventional": "18.6.2",
54
- "@snowpack/plugin-typescript": "1.2.1",
55
- "@types/jest": "27.5.2",
56
- "@types/lodash": "4.14.202",
57
- "@types/react": "17.0.75",
58
- "@types/react-dom": "17.0.25",
61
+ "@commitlint/cli": "19.3.0",
62
+ "@commitlint/config-conventional": "19.2.2",
63
+ "@types/jest": "29.5.12",
64
+ "@types/lodash": "4.17.5",
65
+ "@types/react": "18.3.3",
66
+ "@types/react-dom": "18.3.0",
59
67
  "@types/react-jsonschema-form": "1.7.13",
60
- "eslint": "8.56.0",
61
- "husky": "8.0.3",
62
- "jest": "27.5.1",
63
- "lint-staged": "15.2.2",
64
- "prettier": "3.2.5",
65
- "react": "17.0.2",
66
- "react-dom": "17.0.2",
67
- "rimraf": "5.0.5",
68
- "snowpack": "3.0.10",
69
- "ts-jest": "27.1.5",
68
+ "eslint": "8.57.0",
69
+ "eslint-import-resolver-alias": "1.1.2",
70
+ "eslint-plugin-import": "2.29.1",
71
+ "husky": "9.0.11",
72
+ "jest": "29.7.0",
73
+ "jest-environment-jsdom": "29.7.0",
74
+ "lint-staged": "15.2.7",
75
+ "parcel": "2.12.0",
76
+ "prettier": "3.3.2",
77
+ "process": "0.11.10",
78
+ "react": "18.3.1",
79
+ "react-dom": "18.3.1",
80
+ "rimraf": "5.0.7",
81
+ "ts-jest": "29.1.5",
70
82
  "ttypescript": "1.5.15",
71
83
  "typescript": "4.9.5",
72
- "typescript-transform-paths": "3.4.6"
84
+ "typescript-transform-paths": "3.4.7"
73
85
  },
74
86
  "peerDependencies": {
75
87
  "react": "^16.8 || ^17",