-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
75 lines (75 loc) · 1.94 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
{
"name": "tropical-example-web-app",
"version": "1.1.1",
"license": "MIT",
"description": "Simple example app demonstrating usage of several EOSIO Labs repositories",
"author": {
"name": "block.one",
"url": "https://block.one"
},
"contributors": [
"Justin Brown",
"Cody Douglass",
"Jonathan Pratt",
"Ben Rush",
"Tara Tritt",
"Mike Manfredi"
],
"private": true,
"dependencies": {
"@babel/core": "7.4.3",
"@babel/preset-env": "7.4.3",
"@babel/register": "7.4.4",
"assert": "2.0.0",
"base64url": "3.0.1",
"bigi": "1.4.2",
"bs58": "4.0.1",
"cbor": "3.0.3",
"create-hash": "1.2.0",
"create-hmac": "1.1.7",
"ecurve": "1.0.6",
"elliptic": "6.5.2",
"eosjs": "21.0.1-rc1",
"express": "4.17.1",
"focus-visible": "4.1.5",
"prop-types": "15.7.2",
"randombytes": "2.1.0",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-scripts": "3.2.0",
"ual-eosio-reference-authenticator": "0.1.3",
"ual-lynx": "0.2.2",
"ual-reactjs-renderer": "0.1.7",
"ual-scatter": "0.1.8",
"ual-token-pocket": "0.1.2"
},
"resolutions": {
"serialize-javascript": "^2.1.1",
"eosjs": "21.0.1-rc1"
},
"scripts": {
"start": "node scripts/copyDefaultEnv.js && HTTPS=true react-scripts start",
"startInGitpod": "node scripts/copyDefaultEnv.js && REACT_APP_IS_GITPOD=true react-scripts start",
"build": "react-scripts build",
"up": "docker-compose up",
"lint": "eslint \"src/**/*.js{,?}\"",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@blockone/eslint-config-blockone": "^1.1.1",
"@testing-library/react": "^9.4.0",
"@types/elliptic": "^6.4.6",
"eslint-plugin-no-exclusive-tests": "^1.0.0-rc.1",
"node-sass": "^4.10.0"
}
}