-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.41 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
{
"name": "jshooks-template",
"version": "0.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "js2wasm-cli contracts/index.ts build",
"test": "LOG_LEVEL=error VITE_CJS_TRACE=true vitest ./test/integration/*.test.ts",
"test:unit": "LOG_LEVEL=error VITE_CJS_TRACE=true vitest ./test/unit/**/*.test.ts",
"test:all": "LOG_LEVEL=error VITE_CJS_TRACE=true vitest",
"format": "biome format . --write",
"lint": "biome lint .",
"check": "biome check --write .",
"xrpld:start": "xrpld-netgen up:standalone --protocol xahau --version 2024.7.30-jshooks+937",
"xrpld:stop": "xrpld-netgen down:standalone --protocol xahau --version 2024.7.30-jshooks+937",
"trace": "docker logs --tail 100 -f xahau 2>&1 | cut -d ' ' -f 5- | grep -E 'Publishing ledger|HookInfo|HookTrace|HookError|preclaim result'"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@transia/xahau-models": "2.7.3-alpha.29",
"@transia/xrpl": "2.7.3-alpha.28",
"dotenv": "^16.4.1",
"jshooks-api": "^1.0.5"
},
"devDependencies": {
"@biomejs/biome": "^1.8.1",
"@transia/hooks-toolkit": "2.0.0-alpha.4",
"@transia/ripple-binary-codec": "1.4.6-alpha.10",
"@tsconfig/node18": "^18.2.2",
"@types/node": "^20.14.5",
"js2wasm-cli": "^1.0.5",
"lefthook": "^1.6.16",
"typescript": "^5.3.3",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.3.1"
}
}