-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
executable file
·71 lines (71 loc) · 2.67 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
{
"type": "module",
"name": "cardano-transaction-lib",
"repository": {
"type": "git",
"url": "https://github.com/Plutonomicon/cardano-transaction-lib.git"
},
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run unit-test && npm run integration-test && npm run testnet-test && npm run staking-test",
"start-runtime": "nix run -L .#ctl-runtime",
"start-blockfrost-runtime": "nix run -L .#ctl-runtime-blockfrost",
"integration-test": "spago run --main Test.Ctl.Integration",
"blockfrost-test": "source ./test/blockfrost.env && spago run --main Test.Ctl.Blockfrost.Contract",
"blockfrost-local-test": "source ./test/blockfrost-local.env && spago run --main Test.Ctl.Blockfrost.Contract",
"unit-test": "spago run --main Test.Ctl.Unit",
"testnet-test": "spago run --main Test.Ctl.Testnet",
"staking-test": "spago run --main Test.Ctl.Testnet.Staking",
"e2e-serve": "make esbuild-serve",
"e2e-test": "source ./test/e2e.env && spago test --main Test.Ctl.E2E -a 'run'",
"e2e-test-debug": "source ./test/e2e.env && spago test --main Test.Ctl.E2E -a 'run --no-headless'",
"e2e-browser": "source ./test/e2e.env && spago run --main Test.Ctl.E2E -a 'browser'",
"e2e-pack-settings": "source ./test/e2e.env && spago run --main Test.Ctl.E2E -a 'pack'",
"e2e-unpack-settings": "source ./test/e2e.env && spago run --main Test.Ctl.E2E -a 'unpack'",
"esbuild-bundle": "make esbuild-bundle",
"esbuild-serve": "make esbuild-serve",
"webpack-bundle": "make webpack-bundle",
"webpack-serve": "make webpack-serve"
},
"license": "MIT",
"dependencies": {
"@mlabs-haskell/cardano-message-signing": "^1.0.1",
"@mlabs-haskell/cardano-serialization-lib-gc": "12.0.0",
"@mlabs-haskell/json-bigint": "2.0.0",
"@mlabs-haskell/uplc-apply-args": "1.0.29-alpha",
"@noble/secp256k1": "^1.7.0",
"base64-js": "^1.5.1",
"bignumber.js": "^9.1.1",
"bip39": "^3.1.0",
"bufferutil": "4.0.5",
"isomorphic-ws": "^5.0.0",
"puppeteer-core": "^15.3.2",
"reconnecting-websocket": "4.4.0",
"uniqid": "5.4.0",
"utf-8-validate": "^5.0.10",
"web-encoding": "^1.1.5",
"ws": "^8.16.0",
"xhr2": "0.2.1"
},
"devDependencies": {
"@eslint/js": "^9.7.0",
"blakejs": "1.2.1",
"buffer": "6.0.3",
"doctoc": "^2.2.1",
"esbuild": "0.18.11",
"esbuild-plugin-polyfill-node": "^0.3.0",
"esbuild-plugin-wasm": "^1.1.0",
"globals": "^15.8.0",
"jssha": "3.2.0",
"node-polyfill-webpack-plugin": "2.0.1",
"webpack": "5.88.1",
"webpack-cli": "5.1.4",
"webpack-dev-server": "4.15.1"
},
"prettier": {
"arrowParens": "avoid",
"trailingComma": "none"
}
}