-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 909 Bytes
/
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
{
"scripts": {
"lint:fix": "yarn run eslint --ignore-path .gitignore --ext .js,.ts,.tsx tests/* --fix",
"lint": "yarn run eslint --ignore-path .gitignore --ext .js,.ts,.tsx tests/*"
},
"dependencies": {
"@coral-xyz/anchor": "^0.26.0",
"@project-serum/anchor": "^0.26.0",
"@project-serum/serum": "^0.13.65",
"@solana/web3.js": "^1.74.0",
"eslint": "^8.39.0"
},
"devDependencies": {
"@types/bn.js": "^5.1.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"chai": "^4.3.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.2",
"mocha": "^10.2.0",
"prettier": "^2.8.7",
"ts-mocha": "^10.0.0",
"typescript": "^5.0.3"
}
}