forked from hoprnet/derp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.9 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
{
"name": "derp",
"version": "2.0.1",
"description": "An Ethereum RPC provider which gives access to the logs it gathers.",
"module": "./dist/index.mjs",
"type": "module",
"scripts": {
"format": "prettier --write 'server/*.{js,ts}' 'public/*.{css,json,md,html}' tsconfig.json build.js README.md '.github/**/*.yml'",
"build": "yarn build:backend && yarn build:frontend",
"build:backend": "node build.js",
"types:check": "tsc",
"start-local-ssl-proxy": "local-ssl-proxy --source 8788 --target 8787",
"start-miniflare": "miniflare --live-reload",
"start": "react-scripts start",
"start-https": "HTTPS=true yarn start",
"build:frontend": "react-scripts build",
"lint:fix": "eslint --fix --ext .jsx .",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"license": "MIT",
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.8.3",
"@mui/material": "^5.8.3",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^13.5.0",
"lottie-web": "^5.9.4",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-id-generator": "^3.0.2",
"react-scripts": "5.0.1",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"@cloudflare/kv-asset-handler": "^0.2.0",
"@cloudflare/workers-types": "3.3.0",
"@cloudflare/wrangler": "^1.19.0",
"esbuild": "^0.14.10",
"local-ssl-proxy": "^1.3.0",
"miniflare": "^2.2.0",
"prettier": "^2.3.0",
"tslib": "^2.2.0",
"typescript": "^4.4.4"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}