forked from mbeckem/github-actions-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 4.83 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
{
"name": "starter",
"private": true,
"type": "module",
"license": "Apache-2.0",
"scripts": {
"clean": "rimraf dist && pnpm recursive exec rimraf dist",
"dev": "vite",
"check-types": "tsc --noEmit",
"watch-types": "pnpm check-types -w",
"build": "vite build",
"build-docs": "typedoc",
"build-license-report": "node --loader ts-node/esm --no-warnings=ExperimentalWarning ./support/create-license-report.ts ",
"preview": "vite preview",
"lint": "eslint ./src ./support --ext .js,.ts,.jsx,.tsx,.mjs,.mts,.cjs,.cts --cache --cache-location ./node_modules/.cache/.eslintcache",
"eslint": "pnpm run lint",
"prettier-check": "pnpm prettier:common -c",
"prettier": "pnpm prettier:common -w",
"prettier:common": "prettier ./src ./support ./docs --ignore-path .eslintignore --cache",
"test": "vitest",
"lint-shared-versions": "syncpack list-mismatches",
"update-shared-versions": "syncpack fix-mismatches"
},
"pnpm": {
"//": [
"overrides",
"=========",
"semver: https://github.com/advisories/GHSA-c2qf-rxjj-qqgw",
"tough-cookie: https://github.com/advisories/GHSA-72xf-g2v4-qvf3",
"@mapbox/mapbox-gl-style-spec: license issues, see https://github.com/openlayers/ol-mapbox-style/pull/940",
"",
"ignored cves",
"============",
"",
"patches",
"=======",
"react-select: patched to use composedPath() in event conditions; needed for web component integration (see https://github.com/JedWatson/react-select/issues/5824)",
"@chakra-ui/menu;react-use-outside-click;hooks: patched to fix menus in shadow dom (see https://github.com/open-pioneer/trails-openlayers-base-packages/issues/184)"
],
"overrides": {
"semver@<7.5.2": ">=7.5.2",
"tough-cookie@<4.1.3": ">=4.1.3",
"@mapbox/mapbox-gl-style-spec": "npm:@maplibre/maplibre-gl-style-spec@^20.1.1",
"chakra-react-select>react-select": "^5.8.0"
},
"auditConfig": {
"ignoreCves": []
},
"patchedDependencies": {
"@chakra-ui/[email protected]": "patches/@[email protected]",
"@chakra-ui/[email protected]": "patches/@[email protected]",
"@chakra-ui/[email protected]": "patches/@[email protected]",
"[email protected]": "patches/[email protected]"
}
},
"dependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/react": "^2.8.2",
"@chakra-ui/system": "^2.6.2",
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@formatjs/intl": "^2.9.9",
"@maplibre/maplibre-gl-style-spec": "^20.1.1",
"@open-pioneer/chakra-integration": "^1.1.2",
"@open-pioneer/core": "^1.2.2",
"@open-pioneer/integration": "^2.0.6",
"@open-pioneer/runtime": "^2.1.3",
"@open-pioneer/test-utils": "^1.1.2",
"framer-motion": "^10.17.4",
"ol": "^9.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-use": "^17.4.2"
},
"devDependencies": {
"@open-pioneer/build-package-cli": "^2.0.1",
"@open-pioneer/build-support": "^2.0.1",
"@open-pioneer/vite-plugin-pioneer": "^2.0.1",
"@testing-library/dom": "^9.3.3",
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.2",
"@types/js-yaml": "^4.0.9",
"@types/node": "^16.18.68",
"@types/react": "^18.2.46",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^3.0.0",
"fast-glob": "^3.3.2",
"handlebars": "^4.7.8",
"happy-dom": "^12.10.3",
"js-yaml": "^4.1.0",
"jsdom": "^22.1.0",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"sass": "^1.69.7",
"syncpack": "10.5.1",
"ts-node": "^10.9.2",
"typedoc": "^0.25.6",
"typescript": "~5.3.3",
"vite": "^4.5.3",
"vite-plugin-eslint": "^1.8.1",
"vitest": "^0.34.6"
},
"engines": {
"node": ">= 18",
"pnpm": "^8"
}
}