-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
114 lines (114 loc) · 3.32 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
{
"homepage": "https://open-contracts.github.io",
"name": "open-contracts.github.io",
"version": "0.1.0",
"private": true,
"dependencies": {
"@metamask/detect-provider": "^1.2.0",
"@metamask/onboarding": "^1.0.1",
"@monaco-editor/react": "^4.3.1",
"@octokit/core": "^3.5.1",
"@octokit/rest": "^18.12.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/color": "^3.0.2",
"@types/jest": "^26.0.15",
"@types/node": "^16.10.3",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.3.1",
"@types/ws": "^8.2.0",
"await-to-js": "^3.0.0",
"babel-loader": "8.1.0",
"base64-js": "^1.5.1",
"bootstrap": "^5.1.3",
"color": "3.0.0",
"create-react-app": "^4.0.3",
"ethers": "^5.5.1",
"framer": "^1.3.6",
"framer-motion": "4.1.17",
"gh-pages": "^3.2.3",
"icons": "^1.0.0",
"jwt-simple": "^0.5.6",
"lzutf8": "^0.6.0",
"monaco-editor": "^0.29.1",
"octokit-plugin-create-pull-request": "^3.9.3",
"react": "^17.0.2",
"react-bootstrap": "^1.6.4",
"react-bootstrap-icons": "^1.5.0",
"react-dom": "^17.0.2",
"react-json-view": "^1.21.3",
"react-loading-skeleton": "^2.2.0",
"react-markdown": "^7.0.1",
"react-masonry-css": "^1.0.16",
"react-monaco-editor": "^0.45.0",
"react-resize-detector": "^6.7.6",
"react-responsive": "^9.0.0-beta.4",
"react-responsive-masonry": "^2.1.3",
"react-router-dom": "^6.0.1",
"react-scripts": "^4.0.3",
"remark-gfm": "^3.0.0",
"rgfm": "https://github.com/concentricio/rgfm",
"serve": "^13.0.2",
"typescript": "^4.1.2",
"web-vitals": "^1.0.1",
"ws": "^8.2.3"
},
"devDependencies": {
"@babel/plugin-transform-typescript": "^7.16.1",
"@cypress/react": "^5.10.1",
"@cypress/webpack-dev-server": "^1.7.0",
"@storybook/addon-actions": "^6.3.12",
"@storybook/addon-essentials": "^6.3.12",
"@storybook/addon-links": "^6.3.12",
"@storybook/node-logger": "^6.3.12",
"@storybook/preset-create-react-app": "^3.2.0",
"@storybook/react": "^6.3.12",
"cypress": "^8.6.0",
"cypress-react-router": "^1.0.2",
"storybook": "^6.3.10",
"typedoc": "^0.22.5"
},
"scripts": {
"deploy": "sh build.sh",
"start": "react-scripts start",
"build": "CI=false && react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"build-app": "sh",
"docs": "rm -fr docs/* && npx typedoc src --categorizeByGroup false && http-server ./docs",
"perf": "jest --verbose --coverage --maxWorkers=50% --testRegex 'src/(?:.*)\\.perf\\.(tsx|ts)'",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public",
"cypress-open": "yarn cypress open"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}