-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.09 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 3.09 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
{
"homepage": "https://www.gazzeth.com/",
"name": "pf-front",
"version": "0.1.0",
"private": true,
"description": "",
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"eject": "react-app-rewired eject",
"test-react": "react-app-rewired test",
"predeploy": "npm run build && npm run copy",
"copy": "cp ./CNAME ./build/CNAME",
"deploy": "gh-pages -d build"
},
"devDependencies": {
"@types/classnames": "^2.2.11",
"@types/react-router-dom": "^5.1.7",
"gh-pages": "^3.2.3",
"prettier": "^2.2.1",
"react-app-rewire-alias": "^0.2.0"
},
"dependencies": {
"@ethersproject/address": "^5.1.0",
"@ethersproject/experimental": "^5.0.1",
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"@material-ui/styles": "^4.11.3",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.3",
"@testing-library/user-event": "^12.6.3",
"@types/chai": "^4.2.14",
"@types/jest": "^26.0.20",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.22",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-redux": "^7.1.16",
"@types/react-swipeable-views": "^0.13.0",
"@types/reflect-metadata": "^0.1.0",
"@web3-react/core": "^6.1.9",
"@web3-react/injected-connector": "^6.0.7",
"apexcharts": "^3.26.3",
"chart.js": "^2.9.4",
"class-validator": "^0.13.1",
"classnames": "^2.2.6",
"customize-cra": "^1.0.0",
"eth-permit": "^0.1.9",
"ethers": "^5.2.0",
"i18next": "^19.8.5",
"i18next-browser-languagedetector": "^6.0.1",
"i18next-http-backend": "^1.1.0",
"inversify": "^5.0.5",
"ipfs-http-client": "^50.1.0",
"it-to-buffer": "^2.0.0",
"jazzicon": "^1.5.0",
"moment": "^2.29.1",
"react": "^17.0.1",
"react-apexcharts": "^1.3.9",
"react-app-rewired": "^2.1.8",
"react-dom": "^17.0.1",
"react-i18next": "^11.8.5",
"react-markdown": "^6.0.2",
"react-moment": "^1.1.1",
"react-number-format": "^4.5.5",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.1",
"react-swipeable-views": "^0.13.9",
"react-toastify": "^7.0.4",
"reflect-metadata": "^0.1.13",
"remark-gfm": "^1.0.0",
"tinycolor2": "^1.4.2",
"tsconfig-paths": "^3.9.0",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"typescript": "^4.1.3",
"web3": "^1.3.4"
},
"eslintConfig": {
"extends": "react-app"
},
"_moduleAliases": {
"@domain": "src/domain",
"@application": "src/application",
"@entrypoint": "src/entrypoint",
"@assets": "src/assets",
"@infraestructure": "src/infraestructure",
"@configuration": "src/configuration",
"@constants": "src/constants",
"@helpers": "src/helpers",
"@container-inversify": "src/inversify.config.ts"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}