-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.34 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
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "@senchahq/sencha-registry",
"private": true,
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:senchahq/sencha-registry.git",
"author": "Johanna Johansson <[email protected]>",
"license": "AGPL-3.0",
"packageManager": "[email protected]",
"devDependencies": {
"@rushstack/eslint-patch": "^1.1.0",
"@saberhq/eslint-config": "^1.10.3",
"@types/bn.js": "^5.1.0",
"@types/eslint": "^8.2.0",
"@types/lodash": "^4.14.177",
"@types/node": "^16.11.10",
"@types/prettier": "^2.4.2",
"eslint": "^8.3.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-import": "^2.25.3",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"prettier": "^2.5.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
},
"dependencies": {
"@project-serum/anchor": "^0.18.2",
"@saberhq/anchor-contrib": "^1.10.3",
"@saberhq/solana-contrib": "^1.10.3",
"@saberhq/token-utils": "^1.10.3",
"@senchahq/sencha-sdk": "^0.9.1",
"@solana/spl-token-registry": "^0.2.502",
"@solana/web3.js": "^1.31.0",
"bn.js": "^5.2.0",
"jsbi": "^4.1.0",
"lodash": "^4.17.21"
},
"scripts": {
"registry:sync": "ts-node src/fetchAllSwaps.ts",
"prepare": "husky install"
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{md,json,js,yml,yaml}": "prettier --write"
}
}