-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.02 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.02 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
{
"name": "shadow-tokens",
"version": "0.2.0",
"private": true,
"homepage": "./",
"dependencies": {
"@material-ui/core": "^4.3.2",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.25",
"@sentry/react": "^5.27.3",
"@spyna/react-store": "^1.4.0",
"@types/classnames": "^2.2.11",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.7",
"@types/numeral": "^0.0.28",
"@types/react": "^16.9.56",
"@types/react-dom": "^16.9.9",
"@types/react-outside-click-handler": "^1.3.0",
"@types/styled-components": "^5.1.4",
"@walletconnect/web3-provider": "^1.3",
"classnames": "^2.2.6",
"dotenv": "^8.2.0",
"i18next": "^19.8.3",
"i18next-browser-languagedetector": "^3.0.1",
"material-ui": "^0.20.2",
"numeral": "^2.0.6",
"qrcode.react": "^1.0.0",
"react": "^16.14.0",
"react-copy-to-clipboard": "^5.0.2",
"react-dom": "^16.14.0",
"react-feather": "^2.0.8",
"react-i18next": "^10.7.0",
"react-number-format": "^4.4.1",
"react-outside-click-handler": "^1.2.4",
"react-scripts": "3.4.3",
"styled-components": "^4.3.2",
"typescript": "^3.9.7",
"wallet-address-validator": "^0.2.4",
"web3": "^1.2.11",
"web3-eth-contract": "1.2.7",
"web3modal": "^1.9.1"
},
"scripts": {
"start": "REACT_APP_VERSION=$npm_package_version react-scripts start",
"build": "REACT_APP_VERSION=$npm_package_version react-scripts --max_old_space_size=4096 build",
"format": "prettier --write \"**/*.+(js|jsx|json|yml|yaml|css|md|vue)\"",
"lint": "eslint './src/**/*.{js,ts,tsx}' && prettier -c './src/**/*.{js,ts,tsx}'",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"prettier": "^2.1.2"
}
}