-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.96 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@kredeum/massa-storage",
"version": "0.0.2",
"description": "Massa off-chain Storage on IPFS",
"keywords": [
"massa",
"ipfs",
"storage",
"offchain",
"kredeum"
],
"homepage": "https://github.com/kredeum/massa-storage",
"license": "MIT",
"author": "kredeum <contact@kredeum.com> (http://labs.kredeum.com/)",
"type": "module",
"packageManager": "pnpm@9.12.3",
"engines": {
"node": "^22",
"pnpm": "^9"
},
"scripts": {
"all": "pnpm run setup && pnpm run format && pnpm run check && pnpm run build && pnpm run test && pnpm run dev",
"clean": "rm -rf node_modules .pnpm-lock.yaml .svelte-kit",
"setup": "pnpm run clean && pnpm install",
"sync": "NODE_ENV=prod svelte-kit sync",
"format": "prettier --write --list-different .",
"check": "pnpm run check:prettier && pnpm run check:eslint && pnpm run check:svelte",
"check:prettier": "prettier --check .",
"check:eslint": "eslint .",
"check:svelte": "pnpm run sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"dev": "vite dev",
"start": "vite dev",
"build": "vite build",
"preview": "vite preview",
"lint": "prettier --check . && eslint .",
"test:unit": "vitest",
"test": "npm run test:unit -- --run && npm run test:e2e",
"test:e2e": "playwright test"
},
"devDependencies": {
"@eslint/compat": "^1.2.5",
"@fastify/cors": "^10.0.2",
"@helia/pinning-service-api-server": "^1.0.1",
"@helia/remote-pinning": "^2.0.1",
"@helia/strings": "^4.0.2",
"@playwright/test": "^1.49.1",
"@sveltejs/adapter-static": "^3.0.8",
"@sveltejs/kit": "^2.15.3",
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"@tsconfig/svelte": "^5.0.4",
"autoprefixer": "^10.4.20",
"blockstore-idb": "^2.0.1",
"datastore-idb": "^3.0.1",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-svelte": "^2.46.1",
"fastify": "^5.2.1",
"globals": "^15.14.0",
"interface-blockstore": "^5.3.1",
"it-all": "^3.0.6",
"it-drain": "^3.0.7",
"it-filter": "^3.1.1",
"it-foreach": "^2.1.1",
"it-merge": "^3.0.5",
"lucide-svelte": "^0.471.0",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.10",
"svelte": "^5.18.0",
"svelte-check": "^4.1.4",
"tailwindcss": "^3.4.17",
"turbo": "^2.3.3",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0",
"vite": "^6.0.7",
"vite-plugin-node-polyfills": "^0.22.0",
"vitest": "^2.1.8"
},
"dependencies": {
"@helia/unixfs": "^4.0.2",
"@ipld/dag-pb": "^4.1.3",
"@massalabs/massa-web3": "^5.1.1",
"@massalabs/wallet-provider": "^3.0.0",
"buffer": "^6.0.3",
"helia": "^5.2.0",
"ipfs-unixfs": "^11.2.0",
"kubo-rpc-client": "^5.0.2",
"multiformats": "^13.3.1",
"svelte-hot-french-toast": "^1.0.0",
"svelte-portal": "^2.2.1"
}
}