-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 2.3 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
{
"name": "waku-objects-playground",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test:unit": "vitest",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write . && eslint . --fix",
"knip": "knip",
"start:blockchain": "hardhat node",
"cli": "tsx --tsconfig ./.svelte-kit/tsconfig.json --no-warnings ./src/cli/cli.ts",
"typechain": "typechain --target ethers-v6 --out-dir ./src/lib/objects/split/contracts/types ./src/lib/objects/split/contracts/abis/*.json",
"waku:start": "docker compose -f ./docker-compose.yaml up -d",
"waku:stop": "docker kill waku-objects-playground-waku-1"
},
"devDependencies": {
"@bonosoft/sveltekit-qrcode": "^0.0.3",
"@fontsource/source-sans-pro": "^5.0.8",
"@multiformats/multiaddr": "^12.1.3",
"@noble/ciphers": "^0.4.0",
"@noble/hashes": "^1.3.2",
"@noble/secp256k1": "^2.0.0",
"@sveltejs/adapter-auto": "^2.1.0",
"@sveltejs/adapter-static": "^2.0.3",
"@sveltejs/kit": "^1.21.0",
"@total-typescript/ts-reset": "^0.4.2",
"@typechain/ethers-v6": "^0.5.0",
"@types/node": "^20.5.4",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"@waku-objects/luminance": "^2.0.1",
"@waku-objects/sandbox-example": "^0.4.0",
"@waku/interfaces": "^0.0.19",
"@waku/message-encryption": "^0.0.22",
"@waku/sdk": "^0.0.20",
"@waku/utils": "^0.0.12",
"carbon-icons-svelte": "^12.4.2",
"copy-to-clipboard": "^3.3.3",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-svelte3": "^4.0.0",
"ethers": "^6.6.4",
"hardhat": "^2.16.1",
"heic2any": "^0.0.4",
"html5-qrcode": "^2.3.8",
"ipfs-http-client": "^60.0.0",
"knip": "^2.17.1",
"linkify-html": "^4.1.1",
"linkifyjs": "^4.1.1",
"prettier": "^2.8.8",
"prettier-plugin-svelte": "^2.10.1",
"sass": "^1.63.6",
"svelte": "^4.0.3",
"svelte-check": "^3.4.4",
"svelte-preprocess": "^5.0.4",
"tsx": "^3.12.8",
"typechain": "^8.3.1",
"typescript": "^5.1.6",
"vite": "^4.3.9",
"vitest": "^0.32.4",
"zod": "^3.21.4"
},
"type": "module"
}