-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.14 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
{
"name": "flashloans",
"version": "1.0.0",
"description": "",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"start": "truffle migrate --network testnet & concurrently --kill-others \"npm run fe\" \"npm run be\"",
"testnet": "truffle console --network testnet && compile && migrate --reset",
"dev:fe": "cd UserInterface-UI && npm run dev",
"dev:api": "cd KeystoneJS && npm run dev",
"all": "npm run dev:fe & npm run dev:api",
"build": "truffle migrate --network testnet & npm run all",
"fe": "cd UserInterface-UI && npm run dev",
"be": "cd KeystoneJS && npm run dev",
"p": "concurrently --kill-others \"npm run fe\" \"npm run be\""
},
"author": "NguyenTuanQuangSang",
"license": "ISC",
"dependencies": {
"@openzeppelin/contracts": "^3.0.0",
"@studydefi/money-legos": "^2.4.2",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"concurrently": "^6.4.0",
"request-promise": "^4.2.6"
},
"devDependencies": {
"@truffle/hdwallet-provider": "^1.0.37",
"dotenv": "^8.2.0",
"ethers": "^5.0.4",
"truffle": "^5.1.32"
}
}