forked from naji0329/Claim-Island
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 3.14 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
{
"name": "clam-mvp",
"version": "0.1.0",
"private": true,
"dependencies": {
"@craco/craco": "^6.1.2",
"@ethersproject/units": "^5.5.0",
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@fortawesome/react-fontawesome": "^0.1.14",
"@onramper/widget": "^2.2.10",
"@pancakeswap-libs/uikit": "^0.15.2",
"@react-three/drei": "^7.3.1",
"@react-three/fiber": "^7.0.6",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@usedapp/core": "^0.3.24",
"axios": "^0.21.1",
"bignumber.js": "^9.0.1",
"camera-controls": "^1.33.0",
"classnames": "^2.3.1",
"color-convert": "^2.0.1",
"daisyui": "^1.16.2",
"html2canvas": "^1.3.3",
"konva": "^8.0.4",
"leaflet": "^1.7.1",
"lodash": "^4.17.21",
"mersenne-twister": "^1.1.0",
"moment": "^2.29.1",
"pullstate": "^1.22.1",
"react": "^17.0.1",
"react-color": "^2.19.3",
"react-countdown": "^2.3.2",
"react-device-detect": "^1.17.0",
"react-dom": "^17.0.1",
"react-ga4": "^1.4.1",
"react-gtm-module": "^2.0.11",
"react-hook-form": "^7.8.2",
"react-model-viewer": "^0.6.1",
"react-moment": "^1.1.1",
"react-player": "^2.9.0",
"react-pro-sidebar": "^0.6.0",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"react-select": "^4.3.1",
"react-share": "^4.4.0",
"react-text-reveal": "^1.1.2",
"react-toastify": "^7.0.4",
"react-tooltip": "^4.2.21",
"react-use": "^17.2.4",
"redux-zero": "^5.1.7",
"sass": "^1.39.0",
"styled-components": "^5.2.1",
"three": "^0.126.1",
"use-wallet": "^0.12.3",
"web-vitals": "^1.0.1",
"web3": "^1.6.0",
"web3modal": "^1.9.4"
},
"scripts": {
"start": "craco start",
"start:local": "export REACT_APP_BSC_TESTNET_FORK=true && craco start",
"local": "NODE_ENV=local craco start",
"build": "craco build",
"test": "craco test",
"serve": "HOST=0.0.0.0 npm start",
"eject": "react-scripts eject",
"deploy": "npm run build && firebase deploy",
"deploy-dev": "npm run build && firebase deploy -P dev",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\" --fix",
"prepare": "husky install",
"updateContracts": "node src/updateContractAbis.js"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"stylelint": {
"rules": {
"at-rule-no-unknown": null,
"scss/at-rule-no-unknown": true
}
},
"devDependencies": {
"autoprefixer": "^9.8.6",
"babel-eslint": "^10.1.0",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"husky": "^7.0.0",
"postcss": "^7.0.36",
"prettier": "^2.0.5",
"pretty-quick": "^3.1.1",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.2.4"
}
}