-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.93 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.93 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": "inference-staking-repo",
"description": "Inference Staking Program Repo",
"git": "https://github.com/context-labs/inference-staking",
"type": "module",
"private": true,
"license": "UNLICENSED",
"scripts": {
"setup": "anchor build && bun run scripts/setupKeysFolder.ts && cp .example.env .env",
"format": "prettier */*.js \"**/*{.js,.ts,bun.lock}\" --check",
"format:fix": "prettier */*.js \"**/*{.js,.ts,bun.lock}\" -w",
"lint": "eslint",
"lint:fix": "eslint --fix",
"tsc": "tsc --noEmit",
"test:unit": "bun test \"tests/unit\"",
"test:program:unit": "cargo test -p inference-staking emissions::tests",
"test": "anchor test -- --features test",
"test:skip-local-validator": "anchor test --skip-local-validator -- --features test",
"test-all": "./scripts/test-all.sh",
"build": "anchor build && bun run scripts/generateIDL.ts && bun run format:fix",
"check": "bun run build && bun run format && bun run lint && bun run tsc && bun run test:unit && bun run test:program:unit",
"compile-program": "bun run scripts/compile-program.ts"
},
"dependencies": {
"@coral-xyz/anchor": "0.31.0",
"@solana/spl-token": "0.4.13",
"bs58": "^6.0.0"
},
"devDependencies": {
"@types/bn.js": "^5.1.0",
"@types/bun": "^1.2.11",
"@types/chai": "^4.3.0",
"@types/invariant": "^2.2.37",
"@types/mocha": "^9.0.0",
"@types/pg": "^8.15.1",
"axios": "^1.9.0",
"chai": "^4.3.4",
"dotenv": "^16.5.0",
"eslint": "^9.24.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-sort-destructure-keys": "^2.0.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-typescript-sort-keys": "^3.3.0",
"invariant": "^2.2.4",
"mocha": "^9.0.3",
"pg": "^8.16.0",
"prettier": "^2.6.2",
"superjson": "^2.2.2",
"ts-mocha": "^10.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.8.2",
"typescript-eslint": "^8.29.1"
}
}