-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
115 lines (115 loc) · 3.35 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
113
114
115
{
"name": "honorous-frontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"@cardinal/common": "^2.0.4",
"@cardinal/namespaces-components": "^4.0.5",
"@cardinal/scanner": "^0.1.1",
"@cardinal/staking": "^1.5.37",
"@cardinal/stats": "^1.0.3",
"@metaplex/js": "^3.0.0",
"@mui/material": "^5.6.4",
"@nfteyez/sol-rayz": "^0.10.2",
"@project-serum/anchor": "^0.24.2",
"@reduxjs/toolkit": "^1.8.3",
"@saberhq/anchor-contrib": "^1.12.58",
"@saberhq/solana-contrib": "^1.13.2",
"@solana/buffer-layout": "^4.0.0",
"@solana/buffer-layout-utils": "^0.2.0",
"@solana/spl-token": "^0.1.8",
"@solana/wallet-adapter-base": "^0.9.9",
"@solana/wallet-adapter-react": "^0.15.8",
"@solana/wallet-adapter-react-ui": "^0.9.10",
"@solana/wallet-adapter-wallets": "^0.16.8",
"@solana/web3.js": "^1.48.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^13.0.0",
"@testing-library/user-event": "^13.2.1",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.13",
"@types/react": "^18.0.0",
"@types/react-custom-scrollbars": "^4.0.10",
"@types/react-dom": "^18.0.0",
"@types/react-table": "^7.7.12",
"@types/react-window": "^1.8.5",
"@types/styled-components": "^5.1.25",
"antd": "^4.21.7",
"assert": "^2.0.0",
"autoprefixer": "^10.4.4",
"axios": "^0.27.2",
"fs": "^0.0.1-security",
"https-browserify": "^1.0.0",
"isexe": "^2.0.0",
"os": "^0.1.2",
"os-browserify": "^0.3.0",
"react": "^18.2.0",
"react-app-rewired": "^2.2.1",
"react-countdown": "^2.3.2",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "^18.2.0",
"react-query": "^3.39.1",
"react-redux": "^8.0.2",
"react-router-dom": "^6.3.0",
"react-scripts": "5.0.1",
"react-table": "^7.8.0",
"react-toastify": "^9.0.7",
"react-window": "^1.8.7",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"styled-components": "^5.3.5",
"typescript": "^4.4.2",
"web-vitals": "^2.1.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.15.0",
"eslint": "^8.11.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-import-helpers": "^1.2.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.3.0",
"file-loader": "^6.2.0",
"husky": ">=6",
"lint-staged": ">=10",
"prettier": "^2.5.1"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-app-rewired eject",
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"prepare": "husky install"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --cache --fix",
"prettier --write"
],
"*.{css,md}": "prettier --write"
}
}