forked from OpenQDev/OpenQ-Frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.82 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
{
"name": "openq-frontend",
"version": "0.1.0",
"private": true,
"license": "BUSL-1.1",
"scripts": {
"boot:local": "DEPLOY_ENV=staging next dev -p 3000",
"boot:docker": "DEPLOY_ENV=docker next dev",
"boot:development": "DEPLOY_ENV=development next dev",
"json-server": "json-server --port 3030 __mocks__/mock-server.json",
"json-server:cicd": "echo '\n' | nohup json-server --port 3030 __mocks__/mock-server.json > logs.log &",
"boot:local-targeting-staging": "DEPLOY_ENV=staging next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"test": "TZ=UTC jest --watch ",
"test:cicd": "TZ=UTC jest --runInBand",
"test:pre-push": "TZ=UTC 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",
"prepare": "husky install"
},
"dependencies": {
"@apollo/client": "3.7.9",
"@ethersproject/address": "5.7.0",
"@ethersproject/bignumber": "5.6.0",
"@ethersproject/experimental": "5.7.0",
"@ethersproject/providers": "5.1.2",
"@ethersproject/units": "5.7.0",
"@kycdao/widget": "0.5.0",
"@magic-ext/oauth": "4.0.0",
"@metamask/jazzicon": "2.0.0",
"@primer/octicons-react": "17.12.0",
"@react-pdf/renderer": "3.1.5",
"@superfluid-finance/sdk-core": "0.6.1",
"@tailwindcss/container-queries": "0.1.0",
"@testing-library/user-event": "14.4.3",
"@types/uuid": "9.0.1",
"@walletconnect/ethereum-provider": "1.8.0",
"@web3-react/core": "8.0.36-beta.0",
"@web3-react/gnosis-safe": "8.0.0-beta.0",
"@web3-react/metamask": "8.0.30-beta.0",
"@web3-react/walletconnect": "8.0.37-beta.0",
"apollo-link-http": "1.5.17",
"assert": "2.0.0",
"axios": "1.3.3",
"axios-cache-adapter": "2.7.3",
"bignumber.js": "9.1.1",
"blob-stream": "0.1.3",
"browserify-zlib": "0.2.0",
"buffer": "6.0.3",
"canvas-confetti": "1.6.0",
"chai": "4.3.7",
"cross-fetch": "3.1.5",
"d3": "7.8.2",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-unused-imports": "2.0.0",
"ethers": "5.7.2",
"github-markdown-css": "5.2.0",
"graphql": "16.6.0",
"graphql-tag": "2.12.6",
"gun": "0.2020.1239",
"jest": "29.4.3",
"js-md4": "0.3.2",
"json-server": "0.17.1",
"jspdf": "2.5.1",
"jspdf-autotable": "3.5.28",
"lodash": "4.17.21",
"magic-sdk": "13.4.0",
"mustache": "4.2.0",
"next": "13.1.6",
"papaparse": "5.3.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-ga4": "2.0.0",
"react-hotjar": "5.4.1",
"react-loading-skeleton": "3.1.1",
"react-test-renderer": "18.2.0",
"sharp": "0.31.3",
"stream-browserify": "3.0.0",
"tiny-invariant": "1.3.1",
"uuid": "9.0.0"
},
"devDependencies": {
"@babel/eslint-parser": "7.19.1",
"@babel/preset-react": "7.18.6",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "14.0.0",
"autoprefixer": "10.4.13",
"babel-jest": "29.4.3",
"eslint": "8.34.0",
"eslint-config-next": "13.1.6",
"eslint-plugin-react": "7.32.2",
"husky": "8.0.3",
"jest-environment-jsdom": "29.4.3",
"jest-junit": "15.0.0",
"postcss": "8.4.21",
"prettier": "2.8.4",
"tailwindcss": "3.2.7"
},
"jest-junit": {
"addFileAttribute": "true"
}
}