-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·111 lines (111 loc) · 3.38 KB
/
package.json
File metadata and controls
executable file
·111 lines (111 loc) · 3.38 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": "charged",
"version": "0.0.12",
"description": "A web3 transaction debugger to increase development speed",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/quick-wallet/quick_wallet"
},
"scripts": {
"build": "node utils/build.js",
"start": "node utils/webserver.js",
"prettier": "prettier --write '**/*.{js,jsx,ts,tsx,json,css,scss,md}'"
},
"browser": {
"assert": false,
"path": false,
"fs": false,
"os": false
},
"dependencies": {
"@ag-grid-community/core": "^29.1.0",
"@ag-grid-enterprise/side-bar": "^29.1.0",
"@fortawesome/fontawesome-svg-core": "^6.3.0",
"@fortawesome/free-solid-svg-icons": "^6.3.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@project-serum/anchor": "^0.26.0",
"@project-serum/serum": "^0.13.65",
"@radix-ui/react-popover": "^1.0.5",
"@reduxjs/toolkit": "^1.9.3",
"@solana/buffer-layout": "^3.0.0",
"@solana/spl-token-registry": "^0.2.4574",
"@solana/web3.js": "^1.66.0",
"ag-grid-community": "^29.1.0",
"ag-grid-enterprise": "^29.1.0",
"ag-grid-react": "^29.1.0",
"axios": "^1.3.4",
"bs58": "^5.0.0",
"cmdk": "^0.2.0",
"dotenv-webpack": "^8.0.1",
"eth-rpc-errors": "^4.0.3",
"ethers": "^6.1.0",
"lodash": "^4.17.21",
"loglevel": "^1.8.1",
"mixpanel-browser": "^2.46.0",
"pino": "^8.11.0",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.4",
"react-hot-toast": "^2.4.1",
"react-redux": "^8.0.5",
"react-select": "^5.7.2",
"react-simple-code-editor": "^0.13.1",
"react-table": "^7.8.0",
"react-toggle": "^4.1.3",
"starknet": "^5.10.0",
"styled-components": "^5.3.9",
"superstruct": "^1.0.3",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.10",
"@types/chrome": "^0.0.202",
"@types/lodash": "^4.14.194",
"@types/mixpanel-browser": "^2.38.1",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"assert": "^2.0.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^9.1.2",
"babel-preset-react-app": "^10.0.1",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"eslint": "^8.31.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.27.4",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.0",
"eslint-plugin-react-hooks": "^4.6.0",
"file-loader": "^6.2.0",
"fs": "^0.0.1-security",
"fs-extra": "^11.1.0",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.0",
"os": "^0.1.2",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"prettier": "^2.8.3",
"react-refresh": "^0.14.0",
"react-refresh-typescript": "^2.0.7",
"sass": "^1.62.0",
"sass-loader": "^13.2.0",
"source-map-loader": "^3.0.1",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.6",
"ts-loader": "^9.4.2",
"type-fest": "^3.5.2",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1",
"zip-webpack-plugin": "^4.0.1"
}
}