forked from urbit/bridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.73 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
{
"name": "bridge",
"version": "2.5.0",
"description": "An application for interacting with Azimuth",
"repository": {
"type": "git",
"url": "git+https://github.com/urbit/bridge.git"
},
"main": "src/index.js",
"private": true,
"author": "Tlon",
"license": "MIT",
"engines": {
"node": "11.0.0"
},
"proxy": "http://localhost:4000",
"dependencies": {
"@hot-loader/react-dom": "^16.8.6",
"@ledgerhq/hw-app-eth": "^5.5.0",
"@ledgerhq/hw-transport-u2f": "^5.5.0",
"@welldone-software/why-did-you-render": "^3.2.3",
"async-retry": "^1.2.3",
"azimuth-js": "^0.19.0",
"azimuth-solidity": "^1.2.0",
"bip32": "^1.0.2",
"bip39": "^2.5.0",
"bn.js": "^4.11.8",
"classnames": "^2.2.6",
"copy-to-clipboard": "^3.2.0",
"ethereum-blockies-base64": "^1.0.2",
"ethereumjs-tx": "^1.3.7",
"file-saver": "^2.0.0",
"final-form": "^4.18.4",
"final-form-arrays": "^3.0.1",
"final-form-set-field-data": "^1.0.2",
"folktale": "^2.3.1",
"indigo-tokens": "^1.2.3",
"jszip": "^3.1.5",
"keccak": "^1.4.0",
"keythereum": "^1.0.4",
"lodash": "^4.17.14",
"more-entropy": "^0.0.7",
"new-github-issue-url": "^0.2.1",
"prop-types": "^15.6.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-final-form": "^6.3.0",
"react-final-form-arrays": "^3.1.0",
"react-hot-loader": "^4.12.0",
"react-scripts": "3.0.1",
"react-teleporter": "^1.1.0",
"secp256k1": "^3.5.2",
"trezor-connect": "^8.0.12",
"urbit-key-generation": "^0.17.4",
"urbit-ob": "^4.1.4",
"urbit-paper-renderer": "^2.0.9",
"urbit-sigil-js": "^1.3.5",
"web3": "1.0.0-beta.54",
"web3-utils": "^1.0.0-beta.52"
},
"devDependencies": {
"eslint-config-prettier": "^5.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react-hooks": "^1.6.0",
"ganache-cli": "^6.2.1",
"husky": "^2.4.0",
"node-sass": "^4.12.0",
"npm-run-all": "^4.1.3",
"prettier": "^1.18.2",
"react-app-rewire-aliases": "^0.2.0",
"react-app-rewire-hot-loader": "^2.0.1",
"react-app-rewired": "^2.1.3",
"serve": "^11.0.1",
"source-map-explorer": "^2.0.0",
"truffle": "5.1.16"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test --env=jsdom",
"eject": "react-scripts eject",
"checksum": "cd build && find . -exec shasum -a256 {} ';' > ../checksums.txt && cd ..",
"zip": "zip -ur bridge-$npm_package_version.zip README.md bridge-https.py checksums.txt && cd build && zip -ur ../bridge-$npm_package_version.zip ./* && cd ..",
"release": "npm install && npm run build && npm run checksum && npm run zip",
"pilot:ganache": "ganache-cli --blockTime 1 --networkId 5 --host '0.0.0.0' -m 'benefit crew supreme gesture quantum web media hazard theory mercy wing kitten' > /dev/null &",
"pilot:setup": "npm run pilot:ganache && truffle deploy",
"pilot": "HTTPS=true npm-run-all pilot:setup start pilot:cleanup --continue-on-error",
"pilot-invites": "WITH_TEST_STATE=INVITES npm run pilot",
"pilot-release": "WITH_TEST_STATE=STAR_RELEASE npm run pilot",
"pilot-residents": "WITH_TEST_STATE=RESIDENTS npm run pilot",
"pilot:cleanup": "pkill -f ganache-cli",
"lint:check": "eslint 'src/**/*.js'",
"lint:fix": "eslint --fix 'src/**/*.js'",
"analyze": "source-map-explorer 'build/static/js/*.js'"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"pre-commit": "npm-run-all lint:check"
}
}
}