This repository has been archived by the owner on Mar 22, 2023. It is now read-only.
forked from Uniswap/v2-subgraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.58 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
{
"name": "graphql",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "ts-node ./bin/www",
"deploy:erc20": "ts-node Scripts/ERC20/deploy/erc20Contract.ts",
"deploy:erc20Functions": "ts-node Scripts/ERC20/deploy/erc20ContractFunctions.ts",
"deploy:factory": "ts-node Scripts/FACTORY/deploy/factoryContract.ts",
"deploy:factoryFunctions": "ts-node Scripts/FACTORY/deploy/factoryContractFunctions.ts",
"deploy:pair": "ts-node Scripts/PAIR/deploy/pairContract.ts",
"deploy:pairFunctions": "ts-node Scripts/PAIR/deploy/pairContractFunctions.ts",
"deploy:router": "ts-node Scripts/ROUTER/deploy/routerContract.ts",
"deploy:routerFunctions": "ts-node Scripts/ROUTER/deploy/routerContractFunctions.ts"
},
"engine": {
"node": "16.14.0",
"npm": "8.10.0"
},
"dependencies": {
"axios": "^0.24.0",
"bcrypt": "^5.0.1",
"blakejs": "^1.1.1",
"casper-js-sdk": "^2.7.5",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "^10.0.0",
"express": "~4.16.1",
"express-graphql": "^0.12.0",
"graphql": "^15.6.0",
"graphql-request": "^3.6.1",
"http-errors": "~1.6.3",
"jade": "~1.11.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.0.8",
"morgan": "~1.9.1",
"node-dijkstra": "^2.5.0",
"nodemon": "^2.0.13",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"prettier": "^2.3.2",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"ts-node": "^10.1.0",
"ts-results": "^3.3.0",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.3.3"
}
}