-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
123 lines (123 loc) · 4.26 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
113
114
115
116
117
118
119
120
121
122
123
{
"name": "@iotabots/components",
"version": "0.0.51",
"private": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"dependencies": {
"@date-io/date-fns": "^1.3.13",
"@date-io/moment": "^1.3.13",
"@emotion/react": "^11.6.0",
"@emotion/styled": "^11.6.0",
"@ethersproject/providers": "^5.5.2",
"@mui/icons-material": "^5.2.0",
"@mui/lab": "^5.0.0-alpha.56",
"@mui/material": "^5.2.0",
"@mui/styles": "^5.2.3",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/fg-loadcss": "3.1.1",
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"@types/react": "^17.0.0",
"@types/react-copy-to-clipboard": "^5.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-syntax-highlighter": "^13.5.0",
"@web3-react/core": "^6.1.9",
"@web3-react/injected-connector": "^6.0.7",
"@web3-react/network-connector": "^6.1.9",
"@web3-react/walletconnect-connector": "^6.2.8",
"dayjs": "^1.10.7",
"fg-loadcss": "3.1.0",
"react-copy-to-clipboard": "^5.0.3",
"react-scripts": "4.0.3",
"react-syntax-highlighter": "^15.4.3",
"web-vitals": "^1.0.1",
"web3": "^1.6.1"
},
"peerDependencies": {
"@emotion/react": "^11.6.0",
"@emotion/styled": "^11.6.0",
"@mui/icons-material": "^5.2.0",
"@mui/material": "^5.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"scripts": {
"prepare": "install-peers",
"install-peers": "install-peers",
"start": "react-scripts start",
"rm:build": "rm -rf ./dist/",
"build": "yarn rm:build && npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly && tsc-alias -p tsconfig.json",
"build:js": "babel --config-file ./_.babelrc src --out-dir dist --extensions \".ts,.tsx\" --source-maps inline",
"check:types": "yarn tsc --noEmit src/**/*.tsx --esModuleInterop --resolveJsonModule --jsx react --skipLibCheck",
"test": "jest --verbose --passWithNoTests",
"eject": "react-scripts eject",
"format": "prettier --write 'src/**/*.{ts,tsx,stories.tsx}'",
"lint": "tsc --noEmit && eslint 'src/**/*.{ts,tsx,stories.tsx}'",
"sb": "yarn storybook",
"storybook": "node -e 'require(\"./fix-eslint\").removeTsConfig()' && start-storybook -p 6006 -s public",
"sb:lint": "node -e 'require(\"./fix-eslint\").addTsConfig()' && start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public"
},
"sideEffects": false,
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.7",
"@babel/plugin-transform-typescript": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@react-theming/storybook-addon": "^1.1.1",
"@storybook/addon-actions": "^6.2.9",
"@storybook/addon-essentials": "^6.2.9",
"@storybook/addon-links": "^6.4.9",
"@storybook/node-logger": "^6.2.9",
"@storybook/preset-create-react-app": "^3.1.7",
"@storybook/react": "^6.2.9",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"babel-plugin-inline-json-import": "^0.3.2",
"babel-plugin-styled-components": "^1.10.7",
"babel-plugin-transform-imports": "^2.0.0",
"eslint-config-airbnb": "^19.0.2",
"eslint-config-airbnb-typescript": "16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"install-peers": "^1.0.3",
"install-peers-cli": "^2.2.0",
"prettier": "^2.3.1",
"storybook-addon-designs": "^6.0.0",
"tsc-alias": "^1.3.7",
"typescript": "^4.2.2"
},
"resolutions": {
"react-docgen-typescript": "^2.0.0"
},
"author": "",
"license": "ISC"
}