@indico-data/design-system 1.0.6 → 1.0.8

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@indico-data/design-system",
3
- "version": "1.0.6",
3
+ "version": "1.0.8",
4
4
  "description": "",
5
5
  "private": false,
6
6
  "author": "",
@@ -19,37 +19,27 @@
19
19
  "**/*": "prettier --write --ignore-unknown"
20
20
  },
21
21
  "dependencies": {
22
- "@babel/core": "^7.23.3",
23
- "@babel/preset-env": "^7.23.3",
24
- "@babel/preset-react": "^7.23.3",
25
- "@babel/preset-typescript": "^7.23.3",
26
22
  "@fortawesome/fontawesome-svg-core": "^6.4.2",
27
23
  "@fortawesome/free-regular-svg-icons": "^6.4.2",
28
24
  "@fortawesome/free-solid-svg-icons": "^6.4.2",
29
25
  "@indico-data/utils": "^0.0.5",
30
- "@react-aria/button": "^3.9.0",
31
- "@react-aria/focus": "^3.15.0",
32
- "@types/react": "^18",
33
- "@types/react-dom": "^18",
34
- "babel-loader": "^9.1.3",
35
- "babel-preset-react-app": "^10.0.1",
36
26
  "classnames": "^2.3.2",
37
27
  "date-fns": "^2.30.0",
38
28
  "html-webpack-plugin": "^5.5.3",
39
- "react": "^18",
40
- "react-dom": "^18",
41
- "react-router-dom": "^6.18.0",
42
- "react-select": "^5.8.0",
43
29
  "simple-zustand-devtools": "^1.1.0",
44
- "styled-components": "^6.1.1",
45
30
  "svgo": "^3.0.3",
46
- "typescript": "^5.2.2",
47
31
  "uuid": "^9.0.1",
48
32
  "webpack": "^5",
49
33
  "webpack-cli": "^5.1.4",
50
34
  "webpack-dev-server": "^4.15.1"
51
35
  },
52
36
  "devDependencies": {
37
+ "@babel/core": "^7.23.3",
38
+ "@babel/preset-env": "^7.23.3",
39
+ "@babel/preset-react": "^7.23.3",
40
+ "@babel/preset-typescript": "^7.23.3",
41
+ "@react-aria/button": "^3.9.0",
42
+ "@react-aria/focus": "^3.15.0",
53
43
  "@rollup/plugin-babel": "^6.0.4",
54
44
  "@rollup/plugin-commonjs": "^25.0.7",
55
45
  "@rollup/plugin-node-resolve": "^15.2.3",
@@ -73,7 +63,11 @@
73
63
  "@types/uuid": "^9.0.7",
74
64
  "@typescript-eslint/eslint-plugin": "^6.10.0",
75
65
  "@typescript-eslint/parser": "^6.10.0",
66
+ "@types/react": "^18",
67
+ "@types/react-dom": "^18",
68
+ "babel-loader": "^9.1.3",
76
69
  "babel-plugin-styled-components": "^2.1.4",
70
+ "babel-preset-react-app": "^10.0.1",
77
71
  "eslint": "^8.53.0",
78
72
  "eslint-plugin-react": "^7.33.2",
79
73
  "eslint-plugin-react-hooks": "^4.6.0",
@@ -81,18 +75,31 @@
81
75
  "lint-staged": "^15.1.0",
82
76
  "postcss": "^8.4.31",
83
77
  "prettier": "3.1.0",
78
+ "react": "^18.2.0",
79
+ "react-dom": "^18.2.0",
80
+ "react-router-dom": "^6.20.1",
81
+ "react-select": "^5.8.0",
84
82
  "rollup": "^4.6.1",
85
83
  "rollup-plugin-dts": "^6.1.0",
86
84
  "rollup-plugin-peer-deps-external": "^2.2.4",
87
85
  "rollup-plugin-postcss": "^4.0.2",
88
86
  "storybook": "^7.5.3",
87
+ "styled-components": "^6.1.1",
89
88
  "ts-loader": "^9.5.1",
90
- "tsconfig-paths-webpack-plugin": "^4.1.0"
89
+ "tsconfig-paths-webpack-plugin": "^4.1.0",
90
+ "typescript": "^5.2.2"
91
91
  },
92
92
  "resolutions": {
93
93
  "jackspeak": "2.1.1"
94
94
  },
95
95
  "volta": {
96
96
  "node": "20.9.0"
97
+ },
98
+ "peerDependencies": {
99
+ "react": "^18.2.0",
100
+ "react-dom": "^18.2.0",
101
+ "react-router-dom": "^6.20.1",
102
+ "react-select": "^5.8.0",
103
+ "styled-components": "^6.1.1"
97
104
  }
98
105
  }
package/rollup.config.mjs CHANGED
@@ -41,6 +41,6 @@ export default [
41
41
  input: 'lib/index.d.ts',
42
42
  output: [{ file: 'lib/index.d.ts', format: 'es' }],
43
43
  plugins: [dts()],
44
- external: [/\.css$/, 'react', 'react-dom', 'react-router-dom', 'styled-components', 'lodash'],
44
+ external: [/\.css$/],
45
45
  },
46
46
  ];