@natoora-libs/core 0.0.2
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/README.md +0 -0
- package/package.json +127 -0
package/README.md
ADDED
|
File without changes
|
package/package.json
ADDED
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@natoora-libs/core",
|
|
3
|
+
"version": "0.0.2",
|
|
4
|
+
"private": false,
|
|
5
|
+
"publishConfig": {
|
|
6
|
+
"access": "public"
|
|
7
|
+
},
|
|
8
|
+
"type": "module",
|
|
9
|
+
"files": [
|
|
10
|
+
"dist"
|
|
11
|
+
],
|
|
12
|
+
"exports": {
|
|
13
|
+
"./components": {
|
|
14
|
+
"import": "./dist/components/index.js",
|
|
15
|
+
"types": "./dist/components/index.d.ts"
|
|
16
|
+
},
|
|
17
|
+
"./providers": {
|
|
18
|
+
"import": "./dist/providers/index.js",
|
|
19
|
+
"types": "./dist/providers/index.d.ts"
|
|
20
|
+
},
|
|
21
|
+
"./hooks": {
|
|
22
|
+
"import": "./dist/hooks/index.js",
|
|
23
|
+
"types": "./dist/hooks/index.d.ts"
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"lint-staged": {
|
|
27
|
+
"*.{js,ts,tsx}": [
|
|
28
|
+
"yarn fix:all"
|
|
29
|
+
]
|
|
30
|
+
},
|
|
31
|
+
"scripts": {
|
|
32
|
+
"prepare": "cd ../../ && husky install microservices/purchase-service/frontend/.husky",
|
|
33
|
+
"build": "tsup",
|
|
34
|
+
"build-storybook": "storybook build",
|
|
35
|
+
"storybook": "storybook dev -p 6006",
|
|
36
|
+
"fix:all": "yarn format && yarn lint:fix",
|
|
37
|
+
"format": "prettier --config ./.prettierrc --write \"./src/**/*.{js,ts,tsx}\"",
|
|
38
|
+
"lint": "eslint --config ./.eslintrc.cjs \"./src/**/*.{js,ts,tsx}\"",
|
|
39
|
+
"lint:fix": "yarn lint --fix",
|
|
40
|
+
"test": "jest",
|
|
41
|
+
"test:watch": "jest --watch",
|
|
42
|
+
"test:coverage": "jest --coverage"
|
|
43
|
+
},
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"@date-io/moment": "^1.3.9",
|
|
46
|
+
"@emotion/react": "^11.14.0",
|
|
47
|
+
"@emotion/styled": "^11.14.0",
|
|
48
|
+
"@mui/icons-material": "^6.4.7",
|
|
49
|
+
"@mui/lab": "^6.0.0-beta.30",
|
|
50
|
+
"@mui/material": "^6.4.7",
|
|
51
|
+
"@mui/x-data-grid": "^7.27.2",
|
|
52
|
+
"@mui/x-date-pickers": "5.x.x",
|
|
53
|
+
"@testing-library/jest-dom": "^6.6.3",
|
|
54
|
+
"@testing-library/react": "16.2.0",
|
|
55
|
+
"@testing-library/user-event": "^14.4.3",
|
|
56
|
+
"axios": "^1.8.2",
|
|
57
|
+
"classnames": "^2.3.2",
|
|
58
|
+
"lint-staged": "^11.1.2",
|
|
59
|
+
"moment": "^2.29.4",
|
|
60
|
+
"prop-types": "^15.7.2",
|
|
61
|
+
"react": "18.3.1",
|
|
62
|
+
"react-dom": "18.3.1",
|
|
63
|
+
"react-query": "^3.19.6",
|
|
64
|
+
"react-redux": "^7.2.4",
|
|
65
|
+
"react-router-dom": "^6.14.0",
|
|
66
|
+
"redux": "^4.1.0",
|
|
67
|
+
"redux-devtools-extension": "^2.13.9",
|
|
68
|
+
"tss-react": "^4.9.15"
|
|
69
|
+
},
|
|
70
|
+
"devDependencies": {
|
|
71
|
+
"@babel/core": "^7.26.9",
|
|
72
|
+
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
|
|
73
|
+
"@babel/preset-env": "^7.26.9",
|
|
74
|
+
"@babel/preset-react": "^7.26.3",
|
|
75
|
+
"@babel/preset-typescript": "^7.26.0",
|
|
76
|
+
"@mui/types": "^7.2.21",
|
|
77
|
+
"@storybook/addon-essentials": "^7.3.1",
|
|
78
|
+
"@storybook/addon-interactions": "^7.3.1",
|
|
79
|
+
"@storybook/addon-links": "^7.3.1",
|
|
80
|
+
"@storybook/addon-onboarding": "^1.0.8",
|
|
81
|
+
"@storybook/blocks": "^7.3.1",
|
|
82
|
+
"@storybook/react": "^7.3.1",
|
|
83
|
+
"@storybook/testing-library": "^0.2.0",
|
|
84
|
+
"@types/axios": "^0.14.0",
|
|
85
|
+
"@types/classnames": "^2.3.1",
|
|
86
|
+
"@types/jest": "^29.5.14",
|
|
87
|
+
"@types/moment": "^2.13.0",
|
|
88
|
+
"@types/node": "^20.12.5",
|
|
89
|
+
"@types/react": "18.3.1",
|
|
90
|
+
"@types/react-dom": "18.3.1",
|
|
91
|
+
"@types/react-router-dom": "^5.3.3",
|
|
92
|
+
"@types/react-test-renderer": "^18.3.1",
|
|
93
|
+
"@types/redux": "^3.6.0",
|
|
94
|
+
"@types/uuid": "^9.0.8",
|
|
95
|
+
"@typescript-eslint/parser": "^7.6.0",
|
|
96
|
+
"@vitejs/plugin-react": "^4.3.4",
|
|
97
|
+
"babel-jest": "^29.7.0",
|
|
98
|
+
"babel-plugin-named-exports-order": "^0.0.2",
|
|
99
|
+
"babel-plugin-transform-vite-meta-env": "^1.0.3",
|
|
100
|
+
"eslint": "^7.32.0 || ^8.2.0",
|
|
101
|
+
"eslint-config-airbnb": "^19.0.4",
|
|
102
|
+
"eslint-config-prettier": "^8.8.0",
|
|
103
|
+
"eslint-plugin-import": "^2.27.5",
|
|
104
|
+
"eslint-plugin-import-helpers": "^1.3.1",
|
|
105
|
+
"eslint-plugin-jsx-a11y": "^6.5.1",
|
|
106
|
+
"eslint-plugin-prettier": "^4.2.1",
|
|
107
|
+
"eslint-plugin-react": "^7.28.0",
|
|
108
|
+
"eslint-plugin-react-hooks": "^4.3.0",
|
|
109
|
+
"eslint-plugin-storybook": "^0.6.13",
|
|
110
|
+
"husky": "^8.0.3",
|
|
111
|
+
"jest": "^29.7.0",
|
|
112
|
+
"jest-environment-jsdom": "^29.7.0",
|
|
113
|
+
"prettier": "^2.8.8",
|
|
114
|
+
"react-test-renderer": "18.3.1",
|
|
115
|
+
"storybook": "^7.3.1",
|
|
116
|
+
"ts-jest": "^29.2.6",
|
|
117
|
+
"tsup": "^8.5.0",
|
|
118
|
+
"typescript": "^4.5.0"
|
|
119
|
+
},
|
|
120
|
+
"peerDependencies": {
|
|
121
|
+
"react": "^18.0.0",
|
|
122
|
+
"react-dom": "^18.0.0"
|
|
123
|
+
},
|
|
124
|
+
"resolutions": {
|
|
125
|
+
"@types/react": "18.3.1"
|
|
126
|
+
}
|
|
127
|
+
}
|