richie-education 3.4.1-dev18 → 3.4.1-dev20
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/.eslintrc.json +32 -0
- package/package.json +8 -8
package/.eslintrc.json
CHANGED
|
@@ -43,6 +43,38 @@
|
|
|
43
43
|
"import/extensions": "off",
|
|
44
44
|
"import/no-cycle": ["off"],
|
|
45
45
|
"import/no-dynamic-require": "off",
|
|
46
|
+
"import/no-extraneous-dependencies": [
|
|
47
|
+
"error",
|
|
48
|
+
{
|
|
49
|
+
"devDependencies": [
|
|
50
|
+
"test/**",
|
|
51
|
+
"tests/**",
|
|
52
|
+
"spec/**",
|
|
53
|
+
"**/__tests__/**",
|
|
54
|
+
"**/__mocks__/**",
|
|
55
|
+
"test.{js,jsx,ts,tsx}",
|
|
56
|
+
"test-*.{js,jsx,ts,tsx}",
|
|
57
|
+
"**/*{.,_}{test,spec}.{js,jsx,ts,tsx}",
|
|
58
|
+
"**/jest.config.{js,ts}",
|
|
59
|
+
"**/jest.setup.{js,ts}",
|
|
60
|
+
"**/vue.config.{js,ts}",
|
|
61
|
+
"**/webpack.config.{js,ts}",
|
|
62
|
+
"**/webpack.config.*.{js,ts}",
|
|
63
|
+
"**/rollup.config.{js,ts}",
|
|
64
|
+
"**/rollup.config.*.{js,ts}",
|
|
65
|
+
"**/gulpfile.{js,ts}",
|
|
66
|
+
"**/gulpfile.*.{js,ts}",
|
|
67
|
+
"**/Gruntfile{,.js,.ts}",
|
|
68
|
+
"**/protractor.conf.{js,ts}",
|
|
69
|
+
"**/protractor.conf.*.{js,ts}",
|
|
70
|
+
"**/karma.conf.{js,ts}",
|
|
71
|
+
"**/.eslintrc.{js,ts}",
|
|
72
|
+
"**/*.stories.{js,jsx,ts,tsx}",
|
|
73
|
+
".storybook/**"
|
|
74
|
+
],
|
|
75
|
+
"optionalDependencies": false
|
|
76
|
+
}
|
|
77
|
+
],
|
|
46
78
|
"import/order": [
|
|
47
79
|
"error",
|
|
48
80
|
{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "richie-education",
|
|
3
|
-
"version": "3.4.1-
|
|
3
|
+
"version": "3.4.1-dev20",
|
|
4
4
|
"description": "A CMS to build learning portals for Open Education",
|
|
5
5
|
"main": "sandbox/manage.py",
|
|
6
6
|
"scripts": {
|
|
@@ -57,9 +57,6 @@
|
|
|
57
57
|
"@openfun/cunningham-tokens": "3.0.0",
|
|
58
58
|
"@sentry/browser": "10.40.0",
|
|
59
59
|
"@sentry/types": "10.40.0",
|
|
60
|
-
"@storybook/addon-links": "10.2.13",
|
|
61
|
-
"@storybook/react": "10.2.13",
|
|
62
|
-
"@storybook/react-webpack5": "10.2.13",
|
|
63
60
|
"@tanstack/query-core": "5.90.20",
|
|
64
61
|
"@tanstack/query-sync-storage-persister": "5.90.23",
|
|
65
62
|
"@tanstack/react-query": "5.90.21",
|
|
@@ -105,7 +102,6 @@
|
|
|
105
102
|
"eslint-plugin-prettier": "5.5.5",
|
|
106
103
|
"eslint-plugin-react": "7.37.5",
|
|
107
104
|
"eslint-plugin-react-hooks": "7.0.1",
|
|
108
|
-
"eslint-plugin-storybook": "10.2.13",
|
|
109
105
|
"fetch-mock": "<10",
|
|
110
106
|
"file-loader": "6.2.0",
|
|
111
107
|
"glob": "11.1.0",
|
|
@@ -132,11 +128,10 @@
|
|
|
132
128
|
"react-router": "7.12.0",
|
|
133
129
|
"sass": "1.97.3",
|
|
134
130
|
"source-map-loader": "5.0.0",
|
|
135
|
-
"storybook": "10.2.13",
|
|
136
131
|
"tsconfig-paths-webpack-plugin": "4.2.0",
|
|
137
132
|
"typescript": "5.9.3",
|
|
138
133
|
"uuid": "13.0.0",
|
|
139
|
-
"webpack": "5.
|
|
134
|
+
"webpack": "5.109.2",
|
|
140
135
|
"webpack-cli": "6.0.1",
|
|
141
136
|
"whatwg-fetch": "3.6.20",
|
|
142
137
|
"xhr-mock": "2.5.1",
|
|
@@ -158,6 +153,11 @@
|
|
|
158
153
|
"yarn": "1.22.22"
|
|
159
154
|
},
|
|
160
155
|
"devDependencies": {
|
|
161
|
-
"@storybook/addon-webpack5-compiler-babel": "4.0.0"
|
|
156
|
+
"@storybook/addon-webpack5-compiler-babel": "4.0.0",
|
|
157
|
+
"@storybook/addon-links": "10.2.13",
|
|
158
|
+
"@storybook/react": "10.2.13",
|
|
159
|
+
"@storybook/react-webpack5": "10.2.13",
|
|
160
|
+
"eslint-plugin-storybook": "10.2.13",
|
|
161
|
+
"storybook": "10.2.13"
|
|
162
162
|
}
|
|
163
163
|
}
|