forked from abunsen/etherflow
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.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
{
"name": "etherflow",
"version": "1.0.0",
"description": "A web interface for debugging ethereum nodes",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:tailwind": "tailwindcss build src/tailwind.css -o src/tailwind.output.css",
"prestart": "npm run build:tailwind",
"prebuild": "npm run build:tailwind",
"start": "concurrently \"react-scripts start\""
},
"keywords": [
"ethereum",
"web3",
"ethers.js"
],
"author": "Auston Bunsen",
"license": "MIT",
"dependencies": {
"@reach/router": "^1.3.4",
"@tailwindcss/ui": "^0.3.1",
"bootstrap": "^4.5.0",
"concurrently": "^5.2.0",
"console-feed": "^3.0.0",
"cors": "^2.8.5",
"ethers": "^5.0.5",
"express": "^4.17.1",
"lodash": "^4.17.19",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts": "^3.4.3",
"react-syntax-highlighter": "^12.2.1",
"tailwindcss": "^1.5.1",
"web3": "^1.2.11"
},
"eslintConfig": {
"extends": "react-app"
},
"prettier": {
"singleQuote": true,
"semi": true
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}