-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
34 lines (34 loc) · 1.23 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
{
"license": "Apache-2.0",
"scripts": {
"prettify": "prettier --check './ts/sdk/src/**/*.ts'",
"prettify:fix": "prettier --write './ts/sdk/src/**/*.ts'",
"lint": "eslint . --ext ts --quiet",
"lint:fix": "eslint . --ext ts --fix",
"prepare": "husky install",
"update-types": "cp target/types/jit_proxy.ts ts/sdk/src/types/jit_proxy.ts && prettier --write ts/sdk/src/types/jit_proxy.ts",
"anchor-tests": "yarn update-types && yarn run ts-mocha -p ./tsconfig.json -t 1000000 tests/**/*.ts"
},
"devDependencies": {
"@coral-xyz/anchor": "^0.26.0",
"@drift-labs/sdk": "2.104.0-beta.23",
"@solana/web3.js": "1.73.2",
"@types/bn.js": "^5.1.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"chai": "^4.3.4",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^8.0.0",
"mocha": "^9.0.3",
"prettier": "^2.6.2",
"ts-mocha": "^10.0.0",
"typescript": "^4.5.4"
},
"engines": {
"node": ">=20.18.0"
}
}