-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.95 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@saberhq/saber-lp-token-list-generator",
"private": true,
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:saber-hq/saber-lp-token-list-generator.git",
"author": "Ian Macalinao <[email protected]>",
"license": "AGPL-3.0",
"packageManager": "[email protected]",
"devDependencies": {
"@rushstack/eslint-patch": "^1.6.0",
"@saberhq/eslint-config": "^3.2.0",
"@types/bn.js": "^5.1.5",
"@types/eslint": "^8.44.8",
"@types/lodash": "^4.14.202",
"@types/node": "^18.18.14",
"@types/prettier": "^3.0.0",
"@types/sharp": "^0.31.0",
"eslint": "^8.54.0",
"eslint-import-resolver-node": "^0.3.9",
"eslint-plugin-import": "^2.29.0",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"dependencies": {
"@saberhq/solana-contrib": "^1.14.9",
"@saberhq/token-utils": "^1.14.9",
"axios": "^0.26.1",
"bn.js": "^5.2.1",
"canvas": "^2.11.2",
"jsbi": "^4.3.0",
"lodash": "^4.17.21",
"node-vibrant": "^3.2.1-alpha.1",
"sharp": "^0.31",
"tiny-invariant": "^1.3.1"
},
"scripts": {
"typecheck": "tsc",
"lint": "eslint . --cache",
"build": "rm -fr data/ && cp -R public/ data/ && npm run build-token-list",
"build-pool-banners": "ts-node src/scripts/buildPoolBanners.ts",
"build-launch-banners": "ts-node src/scripts/buildLaunchBanners.ts",
"build-token-list": "ts-node src/scripts/buildTokenList.ts",
"copy-to-solana": "cp -Rn data/assets/mainnet/* ../token-list/assets/mainnet/",
"force-copy-to-solana": "cp -TRv data/assets/mainnet/ ../token-list/assets/mainnet/",
"update-solana-token-list": "ts-node src/scripts/updateSolanaTokenList.ts",
"prepare": "husky install"
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{md,json,js,yml,yaml,html}": "prettier --write"
},
"dependenciesMeta": {
"[email protected]": {
"unplugged": true
}
}
}