-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.56 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "epns-push-service-dev",
"version": "0.6.79",
"description": "EPNS Push Service Dev",
"main": "src/app.ts",
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"build": "rimraf ./build && tsc",
"dev": "ts-node-dev --inspect=9229 --transpileOnly ./src/app.ts",
"dev9001": "ts-node-dev --inspect=9001 --transpile-only ./src/app.ts",
"dev9002": "ts-node-dev --inspect=9002 --transpile-only ./src/app.ts",
"dev9003": "ts-node-dev --inspect=9003 --transpile-only ./src/app.ts",
"start": "nodemon",
"start8gb": "nodemon --max-old-space-size=8000000000",
"flame-install": "yarn global add flamebearer",
"flame-run": "node -r ts-node/register --prof ./src/app.ts",
"flame-build-html": "node --prof-process --preprocess -j isolate*.log | flamebearer",
"inspect": "nodemon --inspect src/app.ts",
"test": "LOG_LEVEL=error NEW_RELIC_ENABLED=false TS_NODE_PROJECT='./tsconfig.mocha.json' mocha -r ts-node/register \"tests/{block,utilz}/**/*.test.ts\" --timeout 120000 --require tests/root.ts --serial",
"test-block": "LOG_LEVEL=error NEW_RELIC_ENABLED=false TS_NODE_PROJECT='./tsconfig.mocha.json' mocha -r ts-node/register \"tests/block/**/*.test.ts\" --timeout 12000 --require tests/root.ts",
"build:proto": "scripts/protoc-generate.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/push-protocol/push-vnode.git"
},
"keywords": [
"push",
"chain"
],
"author": "Harsh Rajat",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/push-protocol/push-vnode/issues"
},
"homepage": "https://github.com/push-protocol/push-vnode/",
"dependencies": {
"@noble/ed25519": "^2.1.0",
"@rodrigogs/mysql-events": "0.6.0",
"@solana/web3.js": "^1.95.3",
"bech32": "^2.0.0",
"bs58": "^6.0.0",
"celebrate": "^15.0.1",
"chai": "^4.3.6",
"cors": "^2.8.5",
"crypto-js": "^4.0.0",
"dotenv": "^8.2.0",
"ethers": "^5.7.2",
"express": "^4.19.2",
"express-json-rpc-router": "^1.4.0",
"graphql": "^16.5.0",
"mysql": "2.18.1",
"node-schedule": "1.3.2",
"object-hash": "^3.0.0",
"pg-promise": "^10.12.0",
"redis": "^4.2.0",
"reflect-metadata": "^0.1.12",
"starknet": "^6.11.0",
"ts-luxon": "^4.3.2",
"ts-node-dev": "1.0.0-pre.44",
"ts-proto": "^2.0.2",
"ts-protoc-gen": "^0.15.0",
"typedi": "^0.8.0",
"typescript": "^4.5.4",
"uuid": "^9.0.0",
"winston": "^3.2.1"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@noble/ed25519": "^2.1.0",
"@pushprotocol/restapi": "^1.2.0",
"@types/agenda": "^2.0.4",
"@types/chai": "^4.3.0",
"@types/crypto-js": "^4.1.1",
"@types/express": "^4.16.0",
"@types/mocha": "^9.0.0",
"@types/mochawesome": "^6.2.1",
"@types/mysql": "^2.15.21",
"@types/node": "^10.17.60",
"@types/node-schedule": "^2.1.0",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"aws-sdk": "2.770.0",
"axios": "^0.27.2",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"mocha": "^9.1.3",
"mochawesome": "^7.1.3",
"mochawesome-report-generator": "^6.2.0",
"nodemon": "^2.0.1",
"nyc": "^15.1.0",
"prettier": "^2.8.4",
"sinon": "^17.0.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.5.4"
}
}