-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
75 lines (75 loc) · 2.44 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
{
"name": "interface",
"version": "0.1.0",
"private": true,
"engines": {
"npm": ">=8.5.5",
"node": ">=17.8.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"deploy": "next build && next export",
"start": "next start",
"lint": "next lint",
"storybook": "NODE_OPTIONS=--openssl-legacy-provider start-storybook -p 6006",
"build-storybook": "NODE_OPTIONS=--openssl-legacy-provider build-storybook",
"prettier-check": "prettier --check .",
"prettier-write": "prettier --write .",
"install-husky": "husky install ./husky",
"postinstall": "npm run prepare",
"type-check": "tsc --pretty --noEmit",
"prepare": "husky install"
},
"lint-staged": {
"*.@(ts|tsx)": [
"npm run prettier-write"
]
},
"dependencies": {
"@headlessui/react": "1.4.3",
"@popperjs/core": "2.11.2",
"@radix-ui/react-dialog": "0.1.5",
"@radix-ui/react-hover-card": "^0.1.5",
"@radix-ui/react-popover": "^0.1.6",
"@radix-ui/react-slider": "0.1.3",
"@radix-ui/react-tabs": "0.1.4",
"ethers": "5.5.4",
"framer-motion": "^6.3.11",
"next": "12.0.8",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hot-toast": "2.2.0",
"react-hotkeys-hook": "^3.4.6",
"react-popper": "^2.2.5",
"recharts": "2.1.8",
"swr": "1.1.2",
"use-persisted-state": "0.3.3",
"wagmi": "0.2.8",
"zustand": "^4.0.0-rc.1"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@storybook/addon-actions": "^6.4.9",
"@storybook/addon-essentials": "^6.4.9",
"@storybook/addon-links": "^6.4.9",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/addon-viewport": "6.4.12",
"@storybook/react": "^6.4.9",
"@types/react": "^17.0.27",
"@types/use-persisted-state": "0.3.0",
"autoprefixer": "^10.3.7",
"babel-loader": "^8.2.3",
"eslint": "^7.32.0",
"eslint-config-next": "^11.1.2",
"eslint-plugin-storybook": "^0.5.5",
"husky": "^7.0.4",
"lint-staged": "^12.4.1",
"postcss": "^8.3.9",
"prettier": "2.5.1",
"prettier-plugin-tailwindcss": "0.1.4",
"storybook-tailwind-dark-mode": "1.0.11",
"tailwindcss": "3.0.13",
"typescript": "^4.4.3"
}
}