forked from Shikhar15606/vyper-otc-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3.19 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
{
"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\" ",
"commit": "git add . && cz",
"first-release": "standard-version -- --first-release",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major",
"push-tags": "git push --follow-tags origin master",
"prepare": "husky install"
},
"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/material": "^5.10.8",
"@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/spl-token": "^0.3.5",
"@solana/spl-token-registry": "^0.2.4574",
"@solana/wallet-adapter-base": "^0.9.16",
"@solana/wallet-adapter-react": "^0.15.18",
"@solana/wallet-adapter-react-ui": "^0.9.16",
"@solana/wallet-adapter-wallets": "^0.18.9",
"@solana/web3.js": "^1.61.0",
"@storybook/react": "^6.5.12",
"@supabase/supabase-js": "^1.35.7",
"@switchboard-xyz/switchboard-v2": "^0.0.132",
"@vyper-protocol/explorer-link-helper": "^0.1.0",
"@vyper-protocol/rust-decimal-wrapper": "^0.1.3",
"axios": "^1.1.3",
"bignumber.js": "^9.1.0",
"classnames": "^2.3.2",
"coingecko-api": "^1.0.10",
"evergreen-ui": "^6.10.3",
"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.2"
},
"devDependencies": {
"@next/eslint-plugin-next": "^12.3.0",
"@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",
"cz-conventional-changelog": "^3.3.0",
"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",
"standard-version": "^9.5.0",
"typescript": "4.8.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --cache --fix"
],
"*.{json,html,md,yml,css,scss}": [
"prettier --write"
]
},
"prettier": "@vyper-protocol/prettier-config"
}