@verdaccio/ui-components 1.0.0 → 2.0.0-6-next.1
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 +62 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@verdaccio/ui-components",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0-6-next.1",
|
|
4
4
|
"description": "theme ui component",
|
|
5
5
|
"author": "Juan Picado <juanpicado19@gmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -10,19 +10,73 @@
|
|
|
10
10
|
"files": [
|
|
11
11
|
"./build"
|
|
12
12
|
],
|
|
13
|
-
"
|
|
14
|
-
"@emotion/react": "11.10.5",
|
|
15
|
-
"@emotion/styled": "11.10.5",
|
|
16
|
-
"@mui/material": "5.11.1",
|
|
13
|
+
"dependencies": {
|
|
14
|
+
"@emotion/react": "^11.10.5",
|
|
15
|
+
"@emotion/styled": "^11.10.5",
|
|
17
16
|
"@mui/icons-material": "5.11.0",
|
|
17
|
+
"@mui/material": "5.11.2",
|
|
18
|
+
"@mui/styles": "5.11.1",
|
|
19
|
+
"@rematch/core": "2.2.0",
|
|
20
|
+
"@rematch/loading": "2.1.2",
|
|
21
|
+
"@rematch/persist": "2.1.2",
|
|
22
|
+
"@verdaccio/types": "11.0.0-6-next.18",
|
|
23
|
+
"dayjs": "1.11.7",
|
|
24
|
+
"dompurify": "2.4.1",
|
|
25
|
+
"github-markdown-css": "5.1.0",
|
|
26
|
+
"highlight.js": "11.7.0",
|
|
27
|
+
"i18next": "20.6.1",
|
|
28
|
+
"localstorage-memory": "1.0.3",
|
|
29
|
+
"lodash": "4.17.21",
|
|
30
|
+
"marked": "4.2.5",
|
|
31
|
+
"normalize.css": "8.0.1",
|
|
18
32
|
"react": "18.2.0",
|
|
19
|
-
"react-dom": "18.2.0"
|
|
33
|
+
"react-dom": "18.2.0",
|
|
34
|
+
"react-i18next": "12.1.1",
|
|
35
|
+
"react-json-view": "1.21.3",
|
|
36
|
+
"react-redux": "7.2.9",
|
|
37
|
+
"react-hook-form": "7.41.1",
|
|
38
|
+
"react-router": "5.3.4",
|
|
39
|
+
"react-router-dom": "5.3.4",
|
|
40
|
+
"react-virtualized": "9.22.3",
|
|
41
|
+
"country-flag-icons": "1.5.5",
|
|
42
|
+
"history": "4.10.1",
|
|
43
|
+
"react-markdown": "8.0.4",
|
|
44
|
+
"remark-gfm": "3.0.1",
|
|
45
|
+
"redux": "4.2.0",
|
|
46
|
+
"validator": "13.7.0"
|
|
47
|
+
},
|
|
48
|
+
"devDependencies": {
|
|
49
|
+
"@babel/core": "^7.20.7",
|
|
50
|
+
"@emotion/babel-plugin": "11.10.5",
|
|
51
|
+
"@emotion/jest": "11.10.5",
|
|
52
|
+
"@fontsource/material-icons": "^4.5.4",
|
|
53
|
+
"@fontsource/roboto": "^4.5.8",
|
|
54
|
+
"@storybook/addon-actions": "^6.5.15",
|
|
55
|
+
"@storybook/addon-essentials": "^6.5.15",
|
|
56
|
+
"@storybook/addon-interactions": "^6.5.15",
|
|
57
|
+
"@storybook/addon-links": "^6.5.15",
|
|
58
|
+
"@storybook/builder-webpack5": "^6.5.15",
|
|
59
|
+
"@storybook/manager-webpack5": "^6.5.15",
|
|
60
|
+
"@storybook/react": "^6.5.15",
|
|
61
|
+
"@storybook/testing-library": "^0.0.13",
|
|
62
|
+
"@testing-library/dom": "8.19.1",
|
|
63
|
+
"@testing-library/jest-dom": "5.16.5",
|
|
64
|
+
"@testing-library/react": "13.4.0",
|
|
65
|
+
"babel-loader": "^8.3.0",
|
|
66
|
+
"mockdate": "3.0.5",
|
|
67
|
+
"msw": "0.49.2"
|
|
68
|
+
},
|
|
69
|
+
"msw": {
|
|
70
|
+
"workerDirectory": "public"
|
|
20
71
|
},
|
|
21
72
|
"scripts": {
|
|
73
|
+
"test": "cross-env TZ=UTC jest --config jest/jest.config.js",
|
|
22
74
|
"clean": "rimraf ./build",
|
|
23
75
|
"type-check": "tsc --noEmit -p tsconfig.build.json",
|
|
24
76
|
"build:types": "tsc --emitDeclarationOnly -p tsconfig.build.json",
|
|
25
|
-
"build:js": "babel src/ --out-dir build/ --copy-files --extensions \".ts,.tsx\" --source-maps",
|
|
26
|
-
"build": "pnpm run build:js && pnpm run build:types"
|
|
77
|
+
"build:js": "babel src/ --out-dir build/ --copy-files --no-copy-ignored --extensions \".ts,.tsx\" --source-maps --ignore \"src/**/*.stories.tsx\" --ignore \"src/**/*.test.tsx\" --ignore \"src/**/*.test.ts\"",
|
|
78
|
+
"build": "pnpm run build:js && pnpm run build:types",
|
|
79
|
+
"storybook": "start-storybook -p 6006 -s ./public",
|
|
80
|
+
"build-storybook": "build-storybook"
|
|
27
81
|
}
|
|
28
82
|
}
|