-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
80 lines (80 loc) · 2.61 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "web3lib",
"version": "1.0.0",
"description": "Web3lib",
"main": "index.js",
"scripts": {
"test": "BLOCKNUMBER=12559804 npx hardhat --network local test",
"pretest": "npm run nodestarter",
"nodestarter": "kill -9 $(lsof -ti:8545) || echo 'hardhat node not running' && npx hardhat node & sleep 10 && mkdir -p ./scripts/resources",
"merge": "npx sol-merger \"./contracts/*.sol\" ./merged",
"run": "ts-node --project ./node.tsconfig.json scripts/index.ts",
"dev": "next dev",
"compile": "npx hardhat compile",
"deploy:contracts": "npx hardhat --network ${NETWORK} run scripts/deploy.ts",
"deploy:live:contracts": "npx hardhat --network ${NETWORK} run scripts/deployProd.ts",
"prebuild": "npm run create:dummyjson && npx hardhat compile",
"build": "next build",
"export": "next export && touch ./out/.nojekyll",
"start": "next start",
"deploy:app": "npx gh-pages -d ./out -t true",
"create:dummyjson": "mkdir -p ./assets && echo {} > ./assets/1337.json",
"deploy": "npm run create:dummyjson && npm run build && npm run export",
"lint": "next lint",
"format": "lint-staged",
"prepare": "husky install"
},
"keywords": [
"token swap",
"widgets",
"web3",
"blockchain",
"cryptocurrency"
],
"contributors": [
"eltneg <[email protected]> (https://eltneg.prjct.dev/)",
"Abdulhafiz Ahmed <[email protected]> (https://abdhafizahmed.com/)"
],
"license": "MIT",
"dependencies": {
"@uniswap/sdk": "^3.0.3",
"axios": "^0.21.4",
"ethers": "^5.4.6",
"ipfs-http-client": "^52.0.3",
"next": "^12.0.7",
"postcss-flexbugs-fixes": "^5.0.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1",
"react-toastify": "^7.0.4",
"react-toggle": "^4.1.2",
"zoid": "^9.0.85"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sftwr-prjct-dev/oneclick.git"
},
"bugs": {
"url": "https://github.com/sftwr-prjct-dev/oneclick/issues"
},
"homepage": "https://github.com/sftwr-prjct-dev/oneclick#readme",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@openzeppelin/contracts": "^4.4.1",
"@typechain/ethers-v5": "^7.0.1",
"@typechain/hardhat": "^2.3.0",
"@types/mocha": "^9.1.0",
"@types/react": "^17.0.11",
"autoprefixer": "^10.2.6",
"hardhat": "^2.6.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"postcss": "^8.3.5",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.3.1",
"tailwindcss": "^2.2.2",
"ts-node": "^10.2.0",
"typechain": "^5.1.2",
"typescript": "^4.3.4"
}
}