-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
92 lines (92 loc) · 2.71 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
{
"name": "neon-bridge-ui",
"version": "0.2.0",
"private": true,
"engines": {
"node": ">=16.14.0"
},
"scripts": {
"start": "GENERATE_SOURCEMAP=false craco start",
"build": "GENERATE_SOURCEMAP=false ENV_CONFIG=.env craco build",
"build:main": "GENERATE_SOURCEMAP=false ENV_CONFIG=.main.env craco build",
"build:dev": "GENERATE_SOURCEMAP=false ENV_CONFIG=.dev.env craco build",
"build:test": "GENERATE_SOURCEMAP=false ENV_CONFIG=.test.env craco build",
"test": "npm-run-all test:*",
"test:types": "tsc",
"test:lint": "eslint 'src/**/*.{ts,tsx,js,jsx}'",
"test-audit": "yarn audit --groups dependencies --level high"
},
"dependencies": {
"@solana/spl-token": "^0.3.6",
"@solana/wallet-adapter-base": "^0.9.19",
"@solana/wallet-adapter-react": "^0.15.25",
"@solana/wallet-adapter-wallets": "^0.19.6",
"@solana/web3.js": "^1.66.1'",
"@web3-react/core": "6.1.9",
"@web3-react/injected-connector": "6.0.7",
"big.js": "^6.2.1",
"classnames": "2.3.2",
"neon-portal": "1.7.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-modal": "3.16.1",
"react-spring": "8.0.27",
"web3": "^1.8.1"
},
"devDependencies": {
"@craco/craco": "^7.0.0",
"@ethereumjs/rlp": "^4.0.0",
"@ethereumjs/tx": "4.0.1",
"@ethereumjs/util": "^8.0.2",
"@ledgerhq/hw-transport": "6.27.7",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"@testing-library/user-event": "14.4.3",
"@types/big.js": "^6.1.6",
"@types/crypto-js": "^4.1.1",
"@types/jest": "29.2.3",
"@types/node": "18.11.9",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"autoprefixer": "^10.4.13",
"bowser": "2.11.0",
"bs58": "^5.0.0",
"crypto-browserify": "^3.12.0",
"crypto-js": "^4.1.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-simple-import-sort": "8.0.0",
"node-polyfill-webpack-plugin": "^2.0.1",
"npm-run-all": "4.1.5",
"postcss": "^8.4.19",
"prettier": "2.8.0",
"react-app-rewired": "^2.2.1",
"react-scripts": "^5.0.1",
"sass": "^1.56.1",
"sass-loader": "^13.2.0",
"stream-browserify": "^3.0.0",
"style-loader": "3.3.1",
"tailwindcss": "^3.2.4",
"typescript": "4.9.3",
"webpack-bundle-analyzer": "4.7.0",
"webpack-version-file": "0.1.7"
},
"resolutions": {
"**/node-fetch": "^2.6.7",
"**/bn.js": "^5.2.0",
"@solana/wallet-adapter-wallets/**/follow-redirects": "^1.14.7"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version"
]
},
"browser": {
"crypto": false
}
}