-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.22 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.22 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
55
56
57
58
59
60
61
62
63
{
"name": "@filecoin-plus/application",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "tsc --build --force tsconfig.build.json && tsc-alias",
"start": "npm run build && TS_NODE_BASEURL=dist node -r tsconfig-paths/register dist/api/index.js",
"start:worker:governance-review": "npm run build && TS_NODE_BASEURL=dist node -r tsconfig-paths/register dist/worker/subscribe-governance-review-status.js",
"start:worker:rkh": "npm run build && TS_NODE_BASEURL=dist node -r tsconfig-paths/register dist/worker/subscribe-rkh.js",
"format:fix": "prettier --write 'src/**/*.{js,ts,json}'",
"format:check": "prettier --check src",
"test": "vitest",
"test:unit": "vitest --config vitest.unit.config.ts",
"test:e2e": "vitest --config vitest.e2e.config.ts",
"test:all": "npm run test:unit run && npm run test:e2e run"
},
"repository": "git@github.com:threesigmaxyz/filecoin-plus.git",
"author": "Afonso Oliveira <afonso.oliveira@threesigma.xyz>",
"license": "MIT",
"devDependencies": {
"@faker-js/faker": "^9.8.0",
"@types/supertest": "^6.0.3",
"@vitest/ui": "^3.2.4",
"@types/amqplib": "^0.10.5",
"@types/cors": "^2.8.17",
"tsc-alias": "^1.8.10",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.5.3",
"prettier": "^3.3.3",
"supertest": "^7.1.1",
"vitest": "^3.2.4"
},
"dependencies": {
"@filecoin-plus/core": "^1.0.0",
"@glif/filecoin-address": "^4.0.0",
"@ipld/dag-cbor": "^9.2.1",
"@noble/hashes": "^1.8.0",
"@noble/secp256k1": "^2.2.3",
"@octokit/core": "^6.1.2",
"@octokit/plugin-throttling": "^9.3.1",
"@octokit/rest": "^21.0.0",
"@types/mongodb": "^4.0.7",
"@wtfcode/byte-converter": "^2.0.8",
"@zondax/filecoin-signing-tools": "^2.4.3",
"airtable": "^0.12.2",
"amqplib": "^0.10.4",
"axios": "^1.13.5",
"cbor": "^10.0.3",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"ethers": "^5.8.0",
"express-validator": "^7.1.0",
"filecoin-verifier-tools": "^2.3.1",
"inversify": "^6.0.2",
"inversify-express-utils": "^6.4.6",
"iso-filecoin": "^7.2.2",
"mongodb": "^6.8.0",
"multiformats": "^13.1.3",
"reflect-metadata": "^0.2.2",
"web3": "^4.14.0"
}
}