-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.09 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
{
"name": "flow-sight",
"type": "module",
"version": "1.0.0",
"description": "Simulation of asset movement and account changes in custom flow transactions with user-friendly UI for Dapper Wallet",
"main": "index.js",
"scripts": {
"build": "mkdir -p src/generated && node build.js",
"postinstall": "npm run build",
"bundle": "npm run build && rollup -c rollup.config.cjs",
"flow-sight": "npm run --silent build && node bin/flow-sight.js",
"test": "./tests/integ/dry-run.sh"
},
"author": "",
"license": "ISC",
"dependencies": {
"@onflow/decode": "^0.0.11",
"@onflow/fcl": "^1.3.2",
"@onflow/flow-cadut": "^0.2.0-alpha.9",
"@onflow/types": "^1.0.5",
"human-object-diff": "^2.0.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.2.0",
"commander": "^9.4.1",
"postinstall-postinstall": "^2.1.0",
"rollup": "^3.7.5"
}
}