@australiangreens/ag-internal-components 0.0.78 → 0.0.79

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@australiangreens/ag-internal-components",
3
3
  "private": false,
4
- "version": "0.0.78",
4
+ "version": "0.0.79",
5
5
  "type": "module",
6
6
  "homepage": "https://github.com/australiangreens/ag-internal-components#readme",
7
7
  "license": "MIT",
@@ -10,25 +10,6 @@
10
10
  "contributors": [
11
11
  "Anthony Blond <anthony@unfinishedteleporter.com>"
12
12
  ],
13
- "scripts": {
14
- "dev": "vite",
15
- "build": "vite build && sh ./scripts/post-build.sh",
16
- "preview": "vite preview",
17
- "eslint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
18
- "test": "vitest run",
19
- "test:coverage": "vitest run --coverage",
20
- "test:watch": "vitest",
21
- "### LIFECYCLE SCRIPTS ###": "",
22
- "prepare": "husky install",
23
- "prepublishOnly": "pnpm eslint && pnpm test && pnpm build",
24
- "### HUSKY GIT HOOKS ###": "Called by husky pre-commit and pre-push scripts",
25
- "prepush": "sh ./scripts/githooks/pre-push.sh",
26
- "precommit": "sh ./scripts/githooks/pre-commit.sh",
27
- "commitmsg": "sh ./scripts/githooks/commit-msg.sh",
28
- "storybook": "storybook dev -p 6006",
29
- "storybook:no": "storybook dev -p 6006 --no-open",
30
- "build-storybook": "storybook build"
31
- },
32
13
  "files": [
33
14
  "dist/*"
34
15
  ],
@@ -48,8 +29,6 @@
48
29
  "dependencies": {
49
30
  "@australiangreens/ag-error": "^0.1.7",
50
31
  "@australiangreens/ag-error-jest": "^0.1.9",
51
- "@auth0/auth0-react": "^2.2.1",
52
- "@auth0/auth0-spa-js": "^2.1.2",
53
32
  "@tanstack/react-query": "^4.35.3",
54
33
  "@types/react-transition-group": "^4.4.6",
55
34
  "autosuggest-highlight": "^3.3.4",
@@ -59,6 +38,7 @@
59
38
  "souvlaki": "^0.3.0"
60
39
  },
61
40
  "peerDependencies": {
41
+ "@auth0/auth0-react": "^2.2.1",
62
42
  "@emotion/react": "11.11.1",
63
43
  "@emotion/styled": "11.11.0",
64
44
  "@mui/icons-material": "^5.14.8",
@@ -68,6 +48,8 @@
68
48
  "react-dom": "^18.2.0"
69
49
  },
70
50
  "devDependencies": {
51
+ "@auth0/auth0-react": "^2.2.1",
52
+ "@auth0/auth0-spa-js": "^2.1.2",
71
53
  "@emotion/react": "^11.11.1",
72
54
  "@emotion/styled": "^11.11.0",
73
55
  "@mui/icons-material": "^5.14.8",
@@ -107,6 +89,7 @@
107
89
  "eslint-plugin-tsdoc": "^0.2.17",
108
90
  "happy-dom": "^12.0.1",
109
91
  "husky": "^8.0.3",
92
+ "jest-extended": "^4.0.1",
110
93
  "lint-staged": "^13.2.2",
111
94
  "prettier": "^2.8.8",
112
95
  "react": "^18.2.0",
@@ -137,5 +120,22 @@
137
120
  },
138
121
  "engines": {
139
122
  "node": ">=16.14.0"
123
+ },
124
+ "scripts": {
125
+ "dev": "vite",
126
+ "build": "vite build && sh ./scripts/post-build.sh",
127
+ "preview": "vite preview",
128
+ "eslint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
129
+ "test": "vitest run",
130
+ "test:coverage": "vitest run --coverage",
131
+ "test:watch": "vitest",
132
+ "### LIFECYCLE SCRIPTS ###": "",
133
+ "### HUSKY GIT HOOKS ###": "Called by husky pre-commit and pre-push scripts",
134
+ "prepush": "sh ./scripts/githooks/pre-push.sh",
135
+ "precommit": "sh ./scripts/githooks/pre-commit.sh",
136
+ "commitmsg": "sh ./scripts/githooks/commit-msg.sh",
137
+ "storybook": "storybook dev -p 6006",
138
+ "storybook:no": "storybook dev -p 6006 --no-open",
139
+ "build-storybook": "storybook build"
140
140
  }
141
- }
141
+ }