forked from omni/tokenbridge
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
56 lines (56 loc) · 1.62 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": "tokenbridge",
"version": "0.0.1",
"description": "Monorepository for TokenBridge",
"repository": "https://github.com/poanetwork/tokenbridge.git",
"author": "rzadp <[email protected]>",
"license": "MIT",
"private": true,
"engines": {
"node": "12.22.12",
"yarn": "~1.22.19"
},
"devDependencies": {
"eslint": "5.16.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-prettier": "3.1.0",
"eslint-plugin-flowtype": "^3.8.1",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-node": "7.0.1",
"eslint-plugin-prettier": "2.6.2",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-react-hooks": "^1.6.0",
"mocha": "^5.2.0",
"prettier": "1.14.3",
"wsrun": "3.6.5"
},
"workspaces": [
"commons",
"oracle",
"oracle-e2e",
"monitor",
"monitor-e2e",
"contracts",
"burner-wallet-plugin",
"alm",
"alm-e2e"
],
"scripts": {
"initialize": "yarn clean && yarn install --unsafe-perm --frozen-lockfile",
"build": "yarn build:alm && yarn build:plugin",
"build:alm": "yarn workspace alm run build",
"build:plugin": "yarn workspace burner-wallet-plugin run build",
"lint": "yarn wsrun lint",
"test": "yarn wsrun --exclude oracle-e2e --exclude monitor-e2e --exclude alm-e2e test",
"oracle-e2e": "./oracle-e2e/run-tests.sh",
"monitor-e2e": "./monitor-e2e/run-tests.sh",
"alm-e2e": "./alm-e2e/run-tests.sh",
"clean": "rm -rf ./node_modules ./**/node_modules ./**/**/node_modules ./**/build ./**/**/dist"
},
"resolutions": {
"**/@mycrypto/eth-scan": "3.5.3"
},
"dependencies": {
"sha3": "^2.1.4"
}
}