-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 2.92 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@saifuwallet/saifu-ui",
"description": "React component library for saifu wallet.",
"version": "0.1.0-beta12",
"author": {
"name": "Tengis Bat-Ulzii",
"email": "[email protected]",
"url": "https://saifuwallet.com"
},
"keywords": [
"react",
"saifu",
"saifuwallet",
"saifu-ui",
"components",
"tailwindcss"
],
"repository": {
"type": "git",
"url": "[email protected]:saifuwallet/saifu-ui.git"
},
"license": "MIT",
"files": [
"dist"
],
"main": "./dist/saifu-ui.umd.js",
"module": "./dist/saifu-ui.es.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/saifu-ui.es.js",
"require": "./dist/saifu-ui.umd.js"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "lint-staged",
"preview": "vite preview",
"storybook": "NODE_OPTIONS=--openssl-legacy-provider start-storybook -p 6006 -h localhost",
"build-storybook": "build-storybook",
"prepare": "husky install"
},
"dependencies": {
"@headlessui/react": "^1.6.4",
"@heroicons/react": "^1.0.6",
"@solana/spl-token-registry": "^0.2.3841",
"@tailwindcss/forms": "^0.5.0",
"autoprefixer": "^10.4.5",
"clsx": "^1.1.1",
"dayjs": "^1.11.2",
"fast-sort": "^3.1.3",
"numeral": "^2.0.6",
"postcss": "^8.4.12",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1",
"react-polymorphic-box": "^3.0.3",
"react-query": "^3.39.0",
"react-window": "^1.8.7",
"tailwind-scrollbar-hide": "^1.1.7",
"tailwindcss": "^3.0.24"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@storybook/addon-a11y": "^6.5.3",
"@storybook/addon-docs": "^6.5.3",
"@storybook/addon-essentials": "^6.5.3",
"@storybook/builder-vite": "^0.1.32",
"@storybook/react": "^6.5.3",
"@storybook/test-runner": "0.1.0",
"@types/numeral": "^2.0.2",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.5",
"@types/react-window": "^1.8.5",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"@vitejs/plugin-react": "^1.3.1",
"babel-loader": "^8.2.5",
"eslint": "^8.14.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-storybook": "^0.5.11",
"husky": "^7.0.4",
"lint-staged": "^12.4.1",
"prettier": "2.6.2",
"prettier-eslint": "^14.0.2",
"storybook-dark-mode": "^1.1.0",
"typescript": "^4.6.3",
"vite": "^2.9.6",
"vite-plugin-dts": "^1.1.1"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"browserslist": [
"defaults"
]
}