-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 1.09 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
{
"name": "syrup-pool-data-api",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"repository": "[email protected]:pancakeswap/syrup-pool-data-api.git",
"author": "PancakeSwap",
"engines": {
"node": "18.x"
},
"scripts": {
"format:check": "prettier --check '*/**/*.{js,ts}'",
"format:write": "prettier --write '*/**/*.{js,ts}'",
"lint": "eslint '*/**/*.{js,ts}'",
"prepare": "husky install"
},
"keywords": [],
"license": "GPL-3.0-or-later",
"devDependencies": {
"@types/lodash": "^4.14.197",
"@types/node": "^20.5.1",
"dotenv": "^10.0.0",
"typescript": "^5.3.3"
},
"dependencies": {
"@pancakeswap/sdk": "^5.7.3",
"@pancakeswap/token-lists": "^0.0.9",
"@pancakeswap/tokens": "^0.5.6",
"@types/node": "^20.5.1",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"@vercel/node": "^3.0.0",
"axios": "^1.4.0",
"bignumber.js": "^9.1.1",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.2",
"prettier": "^2.4.1",
"ts-node": "^10.2.1"
}
}