forked from modagavr/pancake-wizard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.68 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
{
"name": "pancakeswap-prediction-winner",
"version": "5.2.0",
"description": "This bot wins almost every 5 minute BNB-USD option on PancakeSwap",
"author": "Egor Gavrilov",
"license": "MIT",
"scripts": {
"start": "ts-node ./src/index.ts",
"pcs": "ts-node ./src/pancakeswap.ts",
"doge": "ts-node ./src/dogebets.ts",
"test": "jest",
"build": "sh ./scripts/build-extension.sh",
"watch": "nodemon --watch 'src/**/*' -e ts,tsx --exec 'yarn build'",
"lint": "eslint . --fix",
"generate-types": "typechain --target=ethers-v5 './src/abi/**/*.json' --out-dir ./src/types/ethers-contracts",
"postinstall": "yarn generate-types"
},
"dependencies": {
"@chakra-ui/icons": "^1.1.7",
"@chakra-ui/react": "^1.8.8",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"chalk": "4.1.2",
"dayjs": "^1.11.0",
"dotenv": "^16.0.0",
"ethers": "^5.6.3",
"framer-motion": "^6",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@typechain/ethers-v5": "^10.0.0",
"@types/chrome": "^0.0.181",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"@types/react": "^18.0.4",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"esbuild": "^0.14.36",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^27.5.1",
"nodemon": "^2.0.15",
"prettier": "^2.6.2",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typechain": "^8.0.0",
"typescript": "^4.6.3"
}
}