-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 872 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 872 Bytes
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
{
"name": "crypto-trading-bot",
"version": "1.0.0",
"description": "AI-powered crypto trading bot with DEX aggregation",
"main": "server/server.js",
"scripts": {
"dev": "concurrently \"npm run server\" \"npm run client\"",
"server": "cd server && npm run dev",
"client": "cd client && npm start",
"build": "npm run build --prefix client",
"deploy": "hardhat run scripts/deploy.js",
"test": "npm run test --prefix server && npm run test --prefix client"
},
"keywords": [
"crypto",
"trading",
"bot",
"ai",
"dex",
"aggregator",
"web3",
"ethereum"
],
"author": "Crypto Trading Bot",
"license": "MIT",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^6.1.0",
"concurrently": "^7.0.0"
},
"dependencies": {
"@openzeppelin/contracts": "^4.9.6",
"hardhat": "^2.12.0"
}
}