-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
112 lines (112 loc) · 3.39 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
108
109
110
111
112
{
"name": "@yuga-labs/ape-portal-public",
"description": "ApeChain Portal. Offers a set of components to interact with the ApeChain blockchain.",
"version": "0.3.19",
"license": "APEPORTAL-1.0",
"type": "module",
"main": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts",
"module": "./dist/es/index.js",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/es/index.js",
"require": "./dist/cjs/index.js"
},
"./dist/assets/style.css": {
"import": "./dist/assets/style.css",
"require": "./dist/assets/style.css"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"format": "eslint --fix && prettier . --write",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"test": "vitest --run",
"test:coverage": "vitest --run --coverage.enabled --coverage.reporter='text-summary'",
"test:ui": "vitest --ui --coverage.enabled=true",
"test:update": "vitest --update",
"prepublishOnly": "npm run build",
"prepare": "husky"
},
"peerDependencies": {
"react": "^18",
"react-dom": "^18",
"viem": "^2.21.32",
"wagmi": "^2.12.20"
},
"devDependencies": {
"@rainbow-me/rainbowkit": "2.2.0",
"@tanstack/react-query": "5.48.0",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "14.5.2",
"@types/granim": "2.0.4",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"@vitest/coverage-v8": "^1.6.0",
"@vitest/ui": "^1.6.0",
"autoprefixer": "10.4.19",
"eslint": "8.57.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"eslint-plugin-tailwindcss": "3.17.4",
"eslint-plugin-unicorn": "54.0.0",
"glob": "^10.4.1",
"happy-dom": "15.10.2",
"husky": "9.0.11",
"lint-staged": "15.2.7",
"postcss": "^8.4.38",
"postcss-import": "^16.1.0",
"prettier": "3.3.1",
"tailwind-merge": "2.4.0",
"tailwind-scrollbar": "3.1.0",
"tailwindcss": "^3.4.4",
"tailwindcss-animate": "1.0.7",
"typescript": "^5.2.2",
"viem": "2.21.32",
"vite": "^5.4.6",
"vite-plugin-dts": "^3.9.1",
"vite-plugin-static-copy": "2.0.0",
"vitest": "^1.6.0",
"vitest-canvas-mock": "0.3.3",
"wagmi": "2.12.20"
},
"dependencies": {
"@decent.xyz/box-hooks": "4.0.0",
"@decent.xyz/box-ui": "4.0.0",
"@halliday-sdk/commerce": "3.2.0",
"@headlessui/react": "^2.0.4",
"@radix-ui/react-dialog": "1.1.1",
"@radix-ui/react-tooltip": "1.1.3",
"@radix-ui/react-visually-hidden": "1.1.0",
"@uidotdev/usehooks": "2.4.1",
"clsx": "2.1.1",
"ethers": "6.13.2",
"framer-motion": "11.2.12",
"granim": "2.0.0",
"immer": "10.1.1",
"lottie-react": "2.4.0",
"react-loader-spinner": "6.1.6",
"zustand": "4.5.2"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown",
"*.{ts,tsx}": "eslint --report-unused-disable-directives --max-warnings 0 --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/yuga-labs/ape-portal-public.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
}
}