This repository was archived by the owner on Apr 13, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 2.04 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 2.04 KB
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
{
"name": "save-storacha",
"version": "1.0.0",
"description": "## Proposed architecture",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "node src/index.js",
"clean-db": "node scripts/clean-database.js",
"migrate:encrypt:agent-data": "node scripts/migrate-encrypt-agent-data.js",
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"test:architecture": "node --experimental-vm-modules node_modules/.bin/jest tests/architecture-regression.test.mjs --runInBand",
"test:security": "node --experimental-vm-modules node_modules/.bin/jest tests/db-encryption.test.mjs tests/architecture-regression.test.mjs tests/health-route.test.mjs --runInBand",
"test:ci": "npm run test:security",
"test:watch": "node --experimental-vm-modules node_modules/.bin/jest --watch",
"test:coverage": "node --experimental-vm-modules node_modules/.bin/jest --coverage",
"test:verbose": "node --experimental-vm-modules node_modules/.bin/jest --verbose",
"test:real": "node --experimental-vm-modules node_modules/.bin/jest tests/real-system.test.cjs --verbose",
"test:clean": "npm run clean-db && npm run test",
"test:e2e": "node scripts/test-system-e2e.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hyphacoop/save-storacha.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/hyphacoop/save-storacha/issues"
},
"homepage": "https://github.com/hyphacoop/save-storacha#readme",
"dependencies": {
"@ipld/car": "^5.4.2",
"@ipld/dag-ucan": "^3.4.5",
"@storacha/client": "^1.4.2",
"@ucanto/core": "^10.4.0",
"@ucanto/principal": "^9.0.2",
"better-sqlite3": "^11.10.0",
"cors": "^2.8.5",
"crypto-random-string": "^5.0.0",
"express": "^5.1.0",
"express-rate-limit": "^7.5.0",
"ipfs-car": "^3.0.0",
"multer": "^2.0.0",
"multiformats": "^13.3.6",
"node-fetch": "^2.7.0"
},
"devDependencies": {
"@jest/globals": "^30.0.0",
"jest": "^30.0.0",
"supertest": "^7.1.1"
}
}