forked from Shikhar15606/vyper-otc-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.31 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": "vyper-otc-ui",
"version": "0.0.1",
"private": true,
"scripts": {
"prebuild": "rimraf .next",
"dev": "yarn prebuild && next dev",
"build": "next build",
"export": "next export",
"analyze": "ANALYZE=true yarn build",
"lint": "next lint",
"format": "prettier --write \"src/**/*.tsx\" \"src/**/*.ts\" ",
"prepare": "husky install",
"storybook": "start-storybook -p 6006 -s ./public",
"build-storybook": "build-storybook -s public"
},
"dependencies": {
"@date-io/moment": "^2.16.0",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@metaplex-foundation/js": "^0.16.1",
"@metaplex-foundation/mpl-token-metadata": "^2.3.3",
"@mui/icons-material": "^5.10.6",
"@mui/lab": "^5.0.0-alpha.108",
"@mui/material": "^5.10.11",
"@mui/x-data-grid": "^5.17.6",
"@mui/x-date-pickers": "^5.0.4",
"@next/bundle-analyzer": "^12.3.1",
"@project-serum/anchor": "0.24.2",
"@pythnetwork/client": "^2.8.0",
"@sentry/nextjs": "^7.15.0",
"@solana-mobile/wallet-adapter-mobile": "^0.9.1",
"@solana/pay": "^0.2.4",
"@solana/qr-code-styling": "^1.6.0-beta.0",
"@solana/spl-token": "^0.3.5",
"@solana/spl-token-registry": "^0.2.4574",
"@solana/wallet-adapter-base": "^0.9.18",
"@solana/wallet-adapter-react": "^0.15.20",
"@solana/wallet-adapter-react-ui": "^0.9.18",
"@solana/wallet-adapter-wallets": "^0.19.5",
"@solana/web3.js": "^1.61.0",
"@supabase/supabase-js": "^1.35.7",
"@switchboard-xyz/switchboard-v2": "^0.0.150",
"@vyper-protocol/explorer-link-helper": "^0.1.0",
"@vyper-protocol/rust-decimal-wrapper": "^0.1.3",
"async-mutex": "^0.4.0",
"axios": "^1.1.3",
"bignumber.js": "^9.1.0",
"classnames": "^2.3.2",
"immer": "^9.0.16",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"next": "^12.1.5",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-error-boundary": "^3.1.4",
"react-icons": "^4.4.0",
"react-json-view": "^1.21.3",
"react-query": "^3.39.2",
"react-toastify": "^9.0.8",
"zustand": "^4.1.4"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@next/eslint-plugin-next": "^12.3.0",
"@storybook/addon-actions": "^6.5.12",
"@storybook/addon-essentials": "^6.5.12",
"@storybook/addon-interactions": "^6.5.12",
"@storybook/addon-links": "^6.5.12",
"@storybook/builder-webpack5": "^6.5.12",
"@storybook/manager-webpack5": "^6.5.12",
"@storybook/react": "^6.5.12",
"@storybook/testing-library": "^0.0.13",
"@types/lodash": "^4.14.186",
"@types/react": "18.0.19",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"@vyper-protocol/prettier-config": "^0.1.0",
"babel-loader": "^8.2.5",
"eslint": "^8.23.1",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-css-modules": "^2.11.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"sass": "^1.54.9",
"storybook-addon-next": "^1.6.9",
"storybook-addon-sass-postcss": "^0.1.3",
"typescript": "4.8.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --cache --fix"
],
"*.{json,html,md,yml,css,scss}": [
"prettier --write"
]
},
"prettier": "@vyper-protocol/prettier-config"
}