This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
115 lines (115 loc) · 3.49 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
{
"name": "@safe-global/safe-react-components",
"version": "2.0.6",
"description": "Safe UI components",
"main": "dist/index.min.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"Safe"
],
"scripts": {
"types": "yarn tsc",
"start": "rimraf dist && webpack --mode production --watch",
"build": "rimraf dist && webpack --mode production",
"build-storybook": "build-storybook --docs",
"storybook": "start-storybook -p 9009 --docs",
"lint:check": "eslint './src/**/*.{js,jsx,ts,tsx}'",
"prettier": "prettier -w",
"test": "jest tests/storybook.test.js",
"test:ci": "yarn test --ci --coverage --json --watchAll=false --testLocationInResults --runInBand",
"prepare": "yarn build"
},
"author": "Safe (https://app.safe.global)",
"license": "MIT",
"dependencies": {
"@ethersproject/address": "^5.7.0",
"ethereum-blockies-base64": "^1.0.2"
},
"devDependencies": {
"@babel/core": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.0",
"@babel/preset-typescript": "^7.18.0",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.14.3",
"@mui/material": "^5.14.3",
"@storybook/addon-actions": "^6.5.15",
"@storybook/addon-controls": "^6.5.15",
"@storybook/addon-docs": "^6.5.15",
"@storybook/addon-links": "^6.5.15",
"@storybook/addon-storyshots": "^6.5.15",
"@storybook/addons": "^6.5.15",
"@storybook/builder-webpack5": "^6.5.15",
"@storybook/manager-webpack5": "^6.5.15",
"@storybook/react": "^6.5.15",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.2.0",
"@types/jest": "^26.0.0",
"@types/node": "^16.11.9",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.3.0",
"isomorphic-style-loader": "^5.3.2",
"jest": "^26.6.3",
"prettier": "^2.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-qr-reader": "2.2.1",
"rimraf": "^3.0.2",
"storybook-addon-react-docgen": "^1.2.42",
"ts-loader": "^8.2.0",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-bundle-analyzer": "^4.7.0",
"webpack-cli": "^5.0.1"
},
"peerDependencies": {
"@mui/material": "5.x.x",
"react": "17.x.x || 18.x.x",
"react-dom": "17.x.x || 18.x.x"
},
"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"
]
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/tests/jest-runtime.js"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "identity-obj-proxy",
"\\.(css|less)$": "identity-obj-proxy"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/safe-global/safe-react-components.git"
},
"bugs": {
"url": "https://github.com/safe-global/safe-react-components/issues"
},
"homepage": "https://github.com/safe-global/safe-react-components#readme"
}