-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 2.18 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
{
"name": "typescript-node-project-template",
"version": "1.0.0",
"description": "Tools for Uniswap Route Optimization",
"main": "index.js",
"dependencies": {
"@dagrejs/graphlib": "^2.1.4",
"@ethersproject/address": "^5.3.0",
"@ethersproject/contracts": "^5.3.0",
"@ethersproject/networks": "^5.3.0",
"@ethersproject/providers": "^5.3.0",
"@ethersproject/solidity": "^5.3.0",
"@types/cors": "^2.8.10",
"@types/cytoscape": "^3.14.17",
"@types/express": "^4.17.12",
"@types/lru-cache": "^5.1.1",
"@types/luxon": "^1.26.5",
"@types/node": "^14.14.37",
"@types/request-ip": "0.0.35",
"@types/uuid": "^8.3.1",
"@uniswap/sdk": "^3.0.3",
"bigdecimal": "^0.6.1",
"chalk": "^3.0.0",
"commander": "^7.1.0",
"cors": "^2.8.5",
"cytoscape": "^3.19.0",
"dotenv": "^8.2.0",
"esm": "^3.2.25",
"ethers": "^5.4.0",
"express": "^4.17.1",
"got": "^11.8.2",
"helmet": "^4.6.0",
"http": "0.0.1-security",
"jsbi": "^3.1.5",
"loglevel": "^1.6.6",
"loglevel-plugin-prefix": "^0.8.4",
"lru-cache": "^6.0.0",
"luxon": "^1.27.0",
"rate-limiter-flexible": "^2.2.2",
"request-ip": "^2.1.3",
"simple-uniswap-sdk": "^3.4.1",
"socket.io": "^4.1.3",
"tree-crawl": "^1.1.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"typescript": "^3.9.3"
},
"scripts": {
"build": "rm -rf ./dist && tsc",
"debug": "rm -rf ./dist && tsc && NODE_ENV=development node --inspect --max-old-space-size=2048 -r esm ./dist/index.js",
"develop": "rm -rf ./dist && tsc && NODE_ENV=development node --max-old-space-size=2048 -r esm ./dist/index.js",
"production": "rm -rf ./dist && tsc && NODE_ENV=production node --max-old-space-size=2048 -r esm ./dist/index.js",
"pm2": "rm -rf ./dist && tsc && NODE_ENV=production && pm2 start ./src/ecosystem.config.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/AC4TW/typescript-node-project-template.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://gitlab.com/AC4TW/typescript-node-project-template/issues"
},
"homepage": "https://gitlab.com/AC4TW/typescript-node-project-template#readme"
}