@spaceandtimelabs/dapp-mi-components 0.1.0
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 +136 -0
package/package.json
ADDED
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@spaceandtimelabs/dapp-mi-components",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"main": "dist/index.umd.js",
|
|
5
|
+
"module": "dist/index.es.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist"
|
|
9
|
+
],
|
|
10
|
+
"publishConfig": {
|
|
11
|
+
"access": "public"
|
|
12
|
+
},
|
|
13
|
+
"dependencies": {
|
|
14
|
+
"dayjs": "^1.11.5",
|
|
15
|
+
"history": "^4.10.1",
|
|
16
|
+
"prop-types": "^15.8.1",
|
|
17
|
+
"query-string": "^7.1.1",
|
|
18
|
+
"react-icons": "^4.7.1",
|
|
19
|
+
"react-simple-typewriter": "^5.0.1",
|
|
20
|
+
"rollup-plugin-polyfill-node": "^0.12.0",
|
|
21
|
+
"sass": "^1.78.0",
|
|
22
|
+
"typewriter-effect": "^2.21.0",
|
|
23
|
+
"zustand": "^4.5.5"
|
|
24
|
+
},
|
|
25
|
+
"peerDependencies": {
|
|
26
|
+
"@emotion/react": "^11.13.0",
|
|
27
|
+
"@emotion/styled": "^11.13.0",
|
|
28
|
+
"@mui/base": "^5.0.0-alpha.106",
|
|
29
|
+
"@mui/icons-material": "^5.6.0",
|
|
30
|
+
"@mui/material": "^6.0.0",
|
|
31
|
+
"@mui/styles": "^5.8.0",
|
|
32
|
+
"@mui/utils": "^5.9.0",
|
|
33
|
+
"react": "^17.0.2",
|
|
34
|
+
"react-dom": "^17.0.2",
|
|
35
|
+
"react-router-dom": "^5.3.0",
|
|
36
|
+
"styled-components": "^5.3.0"
|
|
37
|
+
},
|
|
38
|
+
"scripts": {
|
|
39
|
+
"clean": "rimraf dist",
|
|
40
|
+
"tsc": "tsc",
|
|
41
|
+
"build:dev": "env-cmd -f .env yarn run build",
|
|
42
|
+
"build": "yarn clean && tsc --emitDeclarationOnly && cross-env NODE_OPTIONS=--max_old_space_size=10240 vite build",
|
|
43
|
+
"start": "vite",
|
|
44
|
+
"fixlint": "eslint --fix \"**/*.{ts,tsx}\" && prettier --write . **/*.{ts,tsx}",
|
|
45
|
+
"lint": "eslint --quiet \"**/*.{ts,tsx}\" && prettier --check . **/*.{ts,tsx}",
|
|
46
|
+
"format": "prettier --write \"**/*.{ts,tsx,json,md}\"",
|
|
47
|
+
"pre-commit": "prettier --write \"**/*.{ts,tsx,json,md}\" && git add -A src",
|
|
48
|
+
"dev": "vite",
|
|
49
|
+
"serve": "vite preview",
|
|
50
|
+
"storybook": "storybook dev -p 6006",
|
|
51
|
+
"build-storybook": "storybook build"
|
|
52
|
+
},
|
|
53
|
+
"lint-staged": {
|
|
54
|
+
"*.{ts,tsx}": [
|
|
55
|
+
"bash -c tsc",
|
|
56
|
+
"yarn run format",
|
|
57
|
+
"yarn run fixlint"
|
|
58
|
+
]
|
|
59
|
+
},
|
|
60
|
+
"resolutions": {
|
|
61
|
+
"@types/react": "^17.0.2",
|
|
62
|
+
"@types/react-dom": "^17.0.2"
|
|
63
|
+
},
|
|
64
|
+
"browserslist": [
|
|
65
|
+
">0.2%",
|
|
66
|
+
"not dead",
|
|
67
|
+
"not ie <= 11",
|
|
68
|
+
"not op_mini all"
|
|
69
|
+
],
|
|
70
|
+
"devDependencies": {
|
|
71
|
+
"@babel/core": "^7.17.9",
|
|
72
|
+
"@chromatic-com/storybook": "^1.6.1",
|
|
73
|
+
"@emotion/react": "^11.13.3",
|
|
74
|
+
"@emotion/styled": "^11.13.0",
|
|
75
|
+
"@mui/base": "^5.0.0-alpha.106",
|
|
76
|
+
"@mui/icons-material": "^5.6.2",
|
|
77
|
+
"@mui/material": "^6.0.2",
|
|
78
|
+
"@mui/styles": "^5.8.0",
|
|
79
|
+
"@mui/utils": "^5.9.3",
|
|
80
|
+
"@storybook/addon-essentials": "^8.2.6",
|
|
81
|
+
"@storybook/addon-interactions": "^8.2.6",
|
|
82
|
+
"@storybook/addon-links": "^8.2.6",
|
|
83
|
+
"@storybook/addon-onboarding": "^8.2.6",
|
|
84
|
+
"@storybook/blocks": "^8.2.6",
|
|
85
|
+
"@storybook/react": "^8.2.6",
|
|
86
|
+
"@storybook/react-vite": "^8.2.6",
|
|
87
|
+
"@storybook/test": "^8.2.6",
|
|
88
|
+
"@types/faker": "5.5.3",
|
|
89
|
+
"@types/react": "^17.0.2",
|
|
90
|
+
"@types/react-dom": "17.0.2",
|
|
91
|
+
"@types/react-router-dom": "^5.3.3",
|
|
92
|
+
"@types/styled-components": "^5.1.25",
|
|
93
|
+
"@typescript-eslint/eslint-plugin": "^5.13.0",
|
|
94
|
+
"@typescript-eslint/parser": "^5.0.0",
|
|
95
|
+
"@vitejs/plugin-react": "^4.1.0",
|
|
96
|
+
"@vitejs/plugin-react-refresh": "^1.3.6",
|
|
97
|
+
"babel-eslint": "^10.1.0",
|
|
98
|
+
"babel-loader": "^8.2.5",
|
|
99
|
+
"cross-env": "^7.0.3",
|
|
100
|
+
"env-cmd": "^10.1.0",
|
|
101
|
+
"eslint": "^8.2.0",
|
|
102
|
+
"eslint-config-airbnb": "^19.0.4",
|
|
103
|
+
"eslint-config-airbnb-typescript": "^17.0.0",
|
|
104
|
+
"eslint-config-prettier": "^8.5.0",
|
|
105
|
+
"eslint-config-react-app": "^7.0.1",
|
|
106
|
+
"eslint-plugin-import": "^2.25.3",
|
|
107
|
+
"eslint-plugin-jsx-a11y": "^6.5.1",
|
|
108
|
+
"eslint-plugin-prettier": "^4.2.1",
|
|
109
|
+
"eslint-plugin-react": "^7.28.0",
|
|
110
|
+
"eslint-plugin-react-hooks": "^4.3.0",
|
|
111
|
+
"eslint-plugin-storybook": "^0.8.0",
|
|
112
|
+
"faker": "5.5.3",
|
|
113
|
+
"lint-staged": "^13.0.3",
|
|
114
|
+
"prettier": "^2.6.2",
|
|
115
|
+
"react": "^17.0.2",
|
|
116
|
+
"react-dom": "^17.0.2",
|
|
117
|
+
"react-router-dom": "^5.3.0",
|
|
118
|
+
"rimraf": "^5.0.5",
|
|
119
|
+
"storybook": "^8.2.6",
|
|
120
|
+
"styled-components": "^5.3.5",
|
|
121
|
+
"tslint": "^6.1.3",
|
|
122
|
+
"tslint-react": "^5.0.0",
|
|
123
|
+
"typescript": "^4.6.3",
|
|
124
|
+
"vite": "^4.5.0"
|
|
125
|
+
},
|
|
126
|
+
"engines": {
|
|
127
|
+
"node": "^18.19.0",
|
|
128
|
+
"yarn": "^1.22.21",
|
|
129
|
+
"npm": "^10.2.3"
|
|
130
|
+
},
|
|
131
|
+
"eslintConfig": {
|
|
132
|
+
"extends": [
|
|
133
|
+
"plugin:storybook/recommended"
|
|
134
|
+
]
|
|
135
|
+
}
|
|
136
|
+
}
|