This repository has been archived by the owner on Dec 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
109 lines (109 loc) · 3.31 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
{
"name": "argo-react",
"version": "2.0.0",
"description": "ArGo Frontend App",
"private": true,
"author": "ArGo",
"license": "MIT",
"keywords": [
"ArGo",
"Deployment",
"Payment",
"React",
"Typescript",
"Badass"
],
"scripts": {
"analyze": "source-map-explorer 'build/static/js/*.js'",
"start": "react-scripts start",
"build": "react-scripts build",
"build:dev": "REACT_APP_STAGE=development react-scripts build",
"build:prod": "REACT_APP_STAGE=production react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"fix": "npm run fix:other && npm run fix:code",
"fix:code": "npm run test:code -- --fix",
"fix:other": "npm run prettier -- --write",
"prettier": "prettier \"**/*.{css,scss,json,md,html,yml}\" --ignore-path=.eslintignore",
"prettier:write": "prettier --write '**/*.{ts,tsx,json,md}' --ignore-path .gitignore",
"prettier:check": "prettier --check '**/*.{ts,tsx,json,md}' --ignore-path .gitignore",
"test:code": "eslint --max-warnings=0 --ignore-path .gitignore --ext .js,.ts,.tsx ."
},
"eslintConfig": {
"extends": "react-app"
},
"homepage": ".",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@argoapp/payment-js": "^1.0.3",
"@ensdomains/ui": "https://github.com/rekpero/ui.git",
"@fortawesome/fontawesome-svg-core": "^1.2.30",
"@fortawesome/free-brands-svg-icons": "^5.14.0",
"@fortawesome/free-regular-svg-icons": "^5.14.0",
"@fortawesome/free-solid-svg-icons": "^5.14.0",
"@fortawesome/react-fontawesome": "^0.1.11",
"@react-hook/window-size": "^3.0.7",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"bnc-notify": "^1.6.1",
"bnc-onboard": "^1.25.0",
"broadcast-channel": "^3.2.0",
"ethers": "5.2.0",
"javascript-time-ago": "^2.0.13",
"js-cookie": "^2.2.1",
"moment": "^2.28.0",
"node-sass": "^4.14.1",
"react": "^16.13.1",
"react-confetti": "^6.0.1",
"react-dom": "^16.13.1",
"react-lazyload": "^3.0.0",
"react-loading-skeleton": "^2.1.1",
"react-lottie": "^1.2.3",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.3",
"react-spinners": "^0.9.0",
"react-tooltip": "^4.2.21",
"reactjs-popup": "^2.0.5",
"rxjs": "^6.6.2",
"skynet-js": "^4.0.14-beta",
"socket.io-client": "^4.1.1",
"source-map-explorer": "^2.5.0",
"typescript": "^4.2.4",
"web3modal": "^1.9.4"
},
"devDependencies": {
"@types/javascript-time-ago": "^2.0.1",
"@types/jest": "^24.0.0",
"@types/js-cookie": "^2.2.6",
"@types/node": "^12.0.0",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@types/react-lazyload": "^3.0.0",
"@types/react-lottie": "^1.2.5",
"@types/react-router-dom": "^5.1.5",
"@types/socket.io-client": "^1.4.33",
"@types/uuid": "^8.3.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5"
}
}