-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.39 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
{
"name": "@arken/evolution-shard",
"version": "2.0.0",
"description": "",
"main": "build/index.js",
"scripts": {
"build": "NODE_ENV=production tsc",
"config": "sudo /opt/bitnami/ctlscript.sh stop apache",
"dev": "node --require ./ts-hook.js ./src/index.ts",
"forever": "NODE_ENV=production rushx build && sudo nohup forever start forever-config.json &",
"inspect": "NODE_ENV=development rushx build && PORT=3001 NODE_ENV=production node --inspect build/index.js",
"kill": "sudo pkill -f node",
"nohup": "sudo nohup node --max_semi_space_size=30000 --max-old-space-size=30000 --initial-old-space-size=8000 --optimize-for-size --experimental-modules --experimental-json-modules build/index.js &",
"prod": "NODE_ENV=production rushx run nodemon --config nodemon.production.json",
"start": "NODE_ENV=production node build/index.js"
},
"dependencies": {
"@arken/evolution-protocol": "workspace:*",
"@arken/node": "workspace:*",
"@typechain/ethers-v4": "^1",
"axios": "^1",
"body-parser": "^1",
"chalk": "^4",
"cors": "^2",
"dd-trace": "^1",
"ethereum-protocol": "^1",
"ethers": "^5",
"express": "^4",
"express-rate-limit": "^5",
"fast-safe-stringify": "^2",
"fs-jetpack": "^4",
"helmet": "^7",
"moment": "^2",
"morgan": "^1",
"semver": "^7",
"shortid": "^2",
"socket.io": "^4",
"typescript": "^5",
"utf8": "^3",
"web3": "^1"
},
"peerDependencies": {
"@ethersproject/address": "^5",
"@ethersproject/contracts": "^5",
"@ethersproject/networks": "^5",
"@ethersproject/providers": "^5",
"@ethersproject/solidity": "^5"
},
"devDependencies": {
"@trpc/client": "11.0.0-rc.660",
"@trpc/server": "11.0.0-rc.660",
"@types/common-tags": "^1",
"@types/cors": "^2",
"@types/ethereum-protocol": "^1",
"@types/express": "^4",
"@types/express-rate-limit": "^3",
"@types/helmet": "^0",
"@types/jest": "^29",
"@types/morgan": "^1",
"@types/node": "^20",
"@types/web3": "^1",
"@typescript-eslint/eslint-plugin": "^8",
"@typescript-eslint/parser": "^8",
"eslint": "^8",
"eslint-config-marine": "^3",
"eslint-config-prettier": "^8",
"eslint-plugin-prettier": "^3",
"eslint-plugin-react": "^7",
"eslint-plugin-react-hooks": "^4",
"jest": "^29",
"nodemon": "^2",
"ts-jest": "^29",
"ts-node": "^10"
}
}