This repository has been archived by the owner on Sep 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
65 lines (65 loc) · 2.5 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
{
"name": "rainbow-bridge-frontend",
"version": "3.5.0",
"license": "(MIT AND Apache-2.0)",
"private": true,
"scripts": {
"build": "env-cmd -e ropsten_development -r .config.js parcel build src/index.html --public-url ./",
"build_mainnet": "env-cmd -e mainnet -r .config.js parcel build src/index.html --public-url ./",
"build_ropsten": "env-cmd -e ropsten_development -r .config.js parcel build src/index.html --public-url ./",
"build_goerli": "env-cmd -e goerli_development -r .config.js parcel build src/index.html --public-url ./",
"build_rinkeby": "env-cmd -e rinkeby_development -r .config.js parcel build src/index.html --public-url ./",
"start_goerli": "env-cmd -e goerli_development -r .config.js parcel src/index.html --port 2222",
"start": "env-cmd -e goerli_development -r .config.js parcel src/index.html --port 2222",
"start_ropsten": "env-cmd -e ropsten_development -r .config.js parcel src/index.html --port 3333",
"start_mainnet": "env-cmd -e mainnet -r .config.js parcel src/index.html --port 1111",
"local": "env-cmd -e local -r .config.js parcel src/index.html",
"lint": "eslint src",
"commitlint": "commitlint --from HEAD~1 --to HEAD --verbose",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"conventional-changelog-angular": "^5.0.12",
"conventional-changelog-cli": "^2.1.1",
"env-cmd": "^10.1.0",
"eslint": "^7.24.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"gh-pages": "^3.1.0",
"parcel-bundler": "^1.12.5",
"parcel-plugin-asset-copier": "^1.1.0",
"parcel-transformer-google-fonts": "^0.1.3",
"posthtml-include": "^1.7.0"
},
"dependencies": {
"@near-eth/client": "^1.8.0",
"@near-eth/nep141-erc20": "^2.1.1",
"@near-eth/near-ether": "^2.1.1",
"@walletconnect/web3-provider": "^1.6.4",
"autobahn": "^20.9.2",
"decimal.js": "^10.2.1",
"ethers": "^5.4.6",
"near-api-js": "^0.43.0",
"web3modal": "^1.9.4"
},
"browserslist": [
"since 2017-04"
],
"assetsPath": "src/img",
"repository": {
"type": "git",
"url": "https://github.com/aurora-is-near/rainbow-bridge-frontend"
},
"parcel": {
"transforms": {
"*.html": [
"parcel-transformer-google-fonts"
]
}
}
}