-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.01 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.01 KB
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
{
"name": "minimal-ui-example",
"version": "0.0.1",
"main": "src/index.ts",
"license": "MIT",
"dependencies": {
"@reef-chain/evm-provider": "^4.0.5",
"@reef-chain/util-lib": "^3.0.2",
"crypto-js": "^4.1.1",
"dotenv": "^16.5.0",
"esbuild": "^0.14.42",
"ethers": "^5.6.9",
"events": "^3.3.0",
"react": "17.0.2",
"rxjs": "^7.5.6",
"stream": "^0.0.2"
},
"scripts": {
"clean": "rm -rf node_modules&&rm yarn.lock&&yarn install",
"build": "esbuild src/index.ts --bundle --outfile=public/js/index.js --platform=browser --tsconfig=tsconfig.json",
"start": "esbuild src/index.ts --bundle --outfile=public/js/index.js --platform=browser --watch --tsconfig=tsconfig.json",
"serve": "esbuild src/index.ts --bundle --servedir=public --outdir=public/js --platform=browser --tsconfig=tsconfig.json --sourcemap",
"deploy": "yarn build && firebase deploy --only hosting",
"sign-native-tx": "npx ts-node ./src/nativeTransaction.ts"
},
"browser": {
"crypto": false
}
}