-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
114 lines (114 loc) · 3.15 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
{
"name": "@scaffold-eth/react-app",
"version": "1.0.0",
"homepage": ".",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@ant-design/icons": "^4.2.2",
"@apollo/client": "^3.3.21",
"@apollo/react-hooks": "^4.0.0",
"@arbitrum/sdk": "^2.0.0",
"@eth-optimism/sdk": "^1.0.0",
"@heroicons/react": "^1.0.6",
"@portis/web3": "^4.0.5",
"@ramp-network/ramp-instant-sdk": "^2.2.0",
"@react-three/drei": "^9.14.3",
"@react-three/fiber": "^8.0.27",
"@types/node": "^18.0.0",
"@uniswap/sdk": "^3.0.3",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"@walletconnect/web3-provider": "^1.5.2",
"antd": "4.16.0",
"apollo-boost": "^0.4.9",
"apollo-client": "^2.6.10",
"apollo-utilities": "^1.3.4",
"authereum": "^0.1.14",
"axios": "^0.25.0",
"bl": "^5.0.0",
"bnc-notify": "^1.5.0",
"dotenv": "^8.2.0",
"eth-hooks": "2.3.16",
"ethers": "^5.6.9",
"fortmatic": "^2.2.1",
"graphiql": "^1.4.7",
"graphql": "^15.3.0",
"ipfs-http-client": "^55.0.0",
"isomorphic-fetch": "^3.0.0",
"lodash": "^4.17.21",
"mime": "^3.0.0",
"nft.storage": "^6.4.0",
"node-watch": "^0.7.1",
"qrcode.react": "^1.0.0",
"react": "^18.2.0",
"react-blockies": "^1.4.1",
"react-css-theme-switcher": "^0.2.2",
"react-dom": "^18.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^5.0.1",
"searchico": "^1.2.1",
"three": "^0.141.0",
"ts-node": "~10.7.0",
"typescript": "~4.6.4",
"wagmi": "^0.4.12",
"walletlink": "^2.1.5",
"web3modal": "^1.9.1"
},
"devDependencies": {
"@apollo/client": "^3.3.21",
"@testing-library/dom": "^6.12.2",
"@types/lodash": "^4.14.182",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@types/react-router-dom": "^5.3.3",
"@types/three": "^0.141.0",
"autoprefixer": "^10.4.7",
"chalk": "^4.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"gulp": "^4.0.2",
"gulp-csso": "^4.0.1",
"gulp-debug": "^4.0.0",
"gulp-less": "^4.0.1",
"gulp-postcss": "^9.0.0",
"less-plugin-npm-import": "^2.1.0",
"postcss": "^8.4.14",
"prettier": "^2.0.5",
"s3-folder-upload": "^2.3.1",
"surge": "^0.21.5",
"tailwindcss": "^3.1.4"
},
"eslintConfig": {
"extends": [
"react-app",
"plugin:prettier/recommended"
],
"rules": {
"prettier/prettier": "warn"
}
},
"scripts": {
"build": "react-scripts build",
"eject": "react-scripts eject",
"start": "react-scripts start",
"test": "react-scripts test",
"lint": "eslint --config ./.eslintrc.js --ignore-path ./.eslintignore ./src/**/*",
"ipfs": "node ./scripts/ipfs.js",
"surge": "cp build/index.html build/200.html && surge ./build",
"s3": "node ./scripts/s3.js",
"ship": "yarn surge",
"theme": "npx gulp less",
"watch": "node ./scripts/watch.js",
"prettier": "npx prettier --write . '!(node_module|build)/**/*'"
}
}