-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.23 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
{
"name": "answer",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint-api": "cd ./packages/api && npm run lint",
"lint": "concurrently \"npm run lint-api\"",
"start-api": "cd ./packages/api && npm run dev",
"start-api-server": "cd ./packages/api && npm start",
"start-client": "cd ./packages/client && npm start",
"start": "cd ./packages/api && npm start",
"install-api": "cd ./packages/api && npm install",
"install-client": "cd ./packages/client && npm install",
"install-all": "concurrently \"npm run install-client\" \"npm run install-api\"",
"build-client": "cd ./packages/client && npm run build"
},
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^5.1.0",
"husky": "^4.2.3"
},
"dependencies": {
"@ethersproject/address": "^5.6.1",
"@ethersproject/contracts": "^5.6.2",
"@ethersproject/providers": "^5.6.8",
"@ethersproject/solidity": "^5.6.1",
"@uniswap/sdk": "^3.0.3",
"axios": "^0.27.2",
"bignumber.js": "^9.0.2",
"graphlib": "^2.1.8",
"jsonfile": "^6.1.0",
"lodash": "^4.17.21",
"prompts": "^2.4.2",
"transducist": "^2.2.0",
"web3": "^1.7.4",
"write-json-file": "^5.0.0"
}
}