-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
116 lines (116 loc) · 3.75 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
{
"name": "wallet-ui",
"version": "1.25.0",
"private": true,
"homepage": "/starknet",
"license": "(Apache-2.0 OR MIT)",
"scripts": {
"allow-scripts": "yarn workspace root allow-scripts",
"build": "craco build",
"build-storybook": "build-storybook",
"build:clean": "yarn clean && yarn build",
"clean": "rimraf dist",
"eject": "craco eject",
"lint": "yarn lint:eslint && yarn lint:misc --check",
"lint:eslint": "eslint . --cache --ext js,ts,tsx",
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier '**/*.ts' '**/*.json' '**/*.tsx' '**/*.md' '!CHANGELOG.md' --ignore-path .gitignore",
"serve": "craco serve",
"start": "craco start",
"storybook": "start-storybook -p 6006",
"test": "craco test --coverage --passWithNoTests"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"resolutions": {
"@storybook/{app}/webpack": "^4",
"nth-check": "^2.0.1",
"terser": "^5.14.2"
},
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-regular-svg-icons": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.1.18",
"@headlessui/react": "^1.6.4",
"@metamask/jazzicon": "github:metamask/jazzicon#d923914fda6a8795f74c2e66134f73cd72070667",
"@mui/icons-material": "^5.6.2",
"@mui/material": "^5.6.2",
"@reduxjs/toolkit": "^1.8.1",
"ethers": "^5.6.8",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-dropdown": "^1.10.0",
"react-popper-tooltip": "^4.3.0",
"react-qr-code": "^2.0.7",
"react-redux": "^8.0.1",
"redux-persist": "^6.0.0",
"semver": "^7.5.2",
"starknet": "6.11.0",
"styled-components": "^5.3.5",
"toastr2": "^3.0.0-alpha.18",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"@craco/craco": "^7.1.0",
"@metamask/eslint-config": "^12.2.0",
"@metamask/eslint-config-browser": "^12.1.0",
"@metamask/eslint-config-jest": "^12.1.0",
"@metamask/eslint-config-nodejs": "^12.1.0",
"@metamask/eslint-config-typescript": "^12.1.0",
"@storybook/addon-actions": "^6.5.3",
"@storybook/addon-essentials": "^6.5.3",
"@storybook/addon-interactions": "^6.5.3",
"@storybook/addon-links": "^6.5.3",
"@storybook/builder-webpack5": "^6.5.3",
"@storybook/manager-webpack5": "^6.5.3",
"@storybook/node-logger": "^6.5.3",
"@storybook/preset-create-react-app": "^4.1.0",
"@storybook/react": "^6.5.3",
"@storybook/testing-library": "^0.0.11",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.2.1",
"@types/jest": "^28.1.2",
"@types/node": "^18.0.0",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@types/semver": "^7.3.10",
"@types/styled-components": "^5.1.25",
"@types/testing-library__jest-dom": "^5.14.4",
"@typescript-eslint/parser": "^5.42.1",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "~2.26.0",
"eslint-plugin-jest": "^27.1.5",
"eslint-plugin-jsdoc": "^41.1.2",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.6.2",
"react-scripts": "5.0.1",
"rimraf": "^3.0.2",
"typescript": "^4.7.4",
"webpack": "^5.76.0"
}
}