-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.44 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.44 KB
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
{
"name": "with-typescript-eslint-jest",
"author": "@erikdstock",
"license": "MIT",
"version": "1.0.0",
"scripts": {
"dev": "next dev",
"devnet": "NEXT_PUBLIC_CLUSTER=devnet NEXT_PUBLIC_ENDPOINT=https://mango.devnet.rpcpool.com/ NEXT_PUBLIC_GROUP=devnet.2 next dev",
"build": "next build",
"start": "next start",
"prepare": "husky install",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write .",
"lint": "eslint . --ext ts --ext tsx --ext js --quiet",
"test": "jest",
"test-all": "yarn lint && yarn type-check && yarn test"
},
"lint-staged": {
"*.@(ts|tsx)": [
"yarn lint",
"yarn format"
]
},
"dependencies": {
"@blockworks-foundation/mango-client": "^3.4.0",
"@headlessui/react": "^1.2.0",
"@heroicons/react": "^1.0.0",
"@jup-ag/react-hook": "^1.0.0-beta.16",
"@project-serum/serum": "0.13.55",
"@project-serum/sol-wallet-adapter": "0.2.0",
"@solana/wallet-adapter-base": "^0.9.4",
"@solana/wallet-adapter-bitpie": "^0.5.3",
"@solana/wallet-adapter-glow": "^0.1.1",
"@solana/wallet-adapter-huobi": "^0.1.0",
"@solana/wallet-adapter-phantom": "^0.9.3",
"@solana/wallet-adapter-react": "^0.15.4",
"@solana/wallet-adapter-slope": "^0.5.4",
"@solana/wallet-adapter-solflare": "^0.6.6",
"@solana/wallet-adapter-sollet": "^0.11.1",
"@solana/wallet-adapter-wallets": "0.11.3",
"@solana/web3.js": "^1.31.0",
"@solflare-wallet/pfp": "^0.0.6",
"@solflare-wallet/sdk": "^1.0.10",
"@tippyjs/react": "^4.2.5",
"axios": "^0.26.0",
"axios-retry": "^3.2.4",
"big.js": "^6.1.1",
"bn.js": "^5.2.0",
"bs58": "^4.0.1",
"buffer-layout": "^1.2.0",
"date-fns": "2.28.0",
"dayjs": "^1.10.4",
"export-to-csv": "^0.2.1",
"immer": "^9.0.1",
"intro.js": "^4.2.2",
"intro.js-react": "^0.5.0",
"lodash": "^4.17.21",
"next": "^12.1.0",
"next-compose-plugins": "^2.2.1",
"next-i18next": "^10.4.0",
"next-themes": "^0.1.1",
"next-transpile-modules": "^9.0.0",
"rc-slider": "^9.7.5",
"react": "^17.0.2",
"react-cool-dimensions": "^2.0.7",
"react-dom": "^17.0.2",
"react-grid-layout": "^1.3.3",
"react-nice-dates": "3.1.0",
"react-portal": "^4.2.1",
"react-super-responsive-table": "^5.2.0",
"react-swipeable-views": "^0.14.0",
"react-virtualized-auto-sizer": "^1.0.6",
"react-window": "^1.8.6",
"recharts": "^2.1.9",
"retry": "^0.13.1",
"sass": "^1.49.9",
"zustand": "^3.3.3"
},
"devDependencies": {
"@netlify/plugin-nextjs": "^4.1.0",
"@svgr/webpack": "^6.1.2",
"@testing-library/react": "^11.2.5",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.25",
"@types/react": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"autoprefixer": "^10.4.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-react": "^7.26.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.4.7",
"jest-watch-typeahead": "^0.6.1",
"lint-staged": "^10.0.10",
"postcss": "^8.4.7",
"prettier": "^2.0.2",
"react-is": "^17.0.2",
"tailwindcss": "^3.0.23",
"twin.macro": "^2.4.1",
"typescript": "^4.1.3"
},
"resolutions": {
"bn.js": "5.1.3",
"@solana/buffer-layout": "3.0.0",
"@types/bn.js": "5.1.0"
},
"proxy": "http://localhost:3000"
}