forked from OpenQDev/OpenQ-Frontend
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·56 lines (56 loc) · 1.97 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
{
"name": "openq",
"version": "0.1.0",
"private": true,
"scripts": {
"boot:local": "next dev",
"boot:docker": "DEPLOY_ENV=docker next dev",
"boot:mock": "next dev",
"boot:production": "DEPLOY_ENV=polygon next dev",
"json-server": "json-server --watch --port 3030 __mocks__/mock-server.json",
"build": "next build",
"start": "next build && next start",
"lint": "next lint",
"test": "jest",
"gen": "node services/ethers/mocks/abiToJavascriptClass.js",
"prepare-mumbai": "mustache constants/config/mumbai.json constants/polygon-mumbai.json.mustache > constants/polygon-mumbai.json && mustache constants/config/mumbai.json constants/polygon-mumbai-tokens.json.mustache > constants/polygon-mumbai-tokens.json",
"prepare-polygon": "mustache constants/config/mainnet.json constants/polygon-mainnet.json.mustache > constants/polygon-mainnet.json && mustache constants/config/mainnet.json constants/polygon-mainnet-tokens.json.mustache > constants/polygon-mainnet-tokens.json"
},
"dependencies": {
"@apollo/client": "^3.4.10",
"@ethersproject/address": "^5.5.0",
"@ethersproject/providers": "^5.1.2",
"@ethersproject/units": "^5.1.0",
"@metamask/jazzicon": "^2.0.0",
"@web3-react/core": "latest",
"@web3-react/injected-connector": "latest",
"apollo-link-http": "^1.5.17",
"axios": "^0.21.4",
"bignumber.js": "^9.0.1",
"chai": "^4.3.4",
"cross-fetch": "^3.1.4",
"eslint-plugin-unused-imports": "^1.1.5",
"ethers": "^5.4.5",
"graphql": "^15.6.1",
"hardhat": "^2.6.1",
"husky": "^7.0.4",
"jest": "^27.1.1",
"json-server": "^0.17.0",
"lodash": "^4.17.21",
"mustache": "^4.2.0",
"next": "11.1.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"subscriptions-transport-ws": "^0.11.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.16.5",
"@babel/preset-react": "^7.16.7",
"autoprefixer": "^10.3.3",
"eslint": "7.32.0",
"eslint-config-next": "11.1.0",
"eslint-plugin-react": "^7.28.0",
"postcss": "^8.3.6",
"tailwindcss": "^2.2.8"
}
}