-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·110 lines (110 loc) · 3.12 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
107
108
109
110
{
"name": "snode",
"version": "0.1",
"description": "storage node",
"main": "src/app.ts",
"engines": {
"npm": "please-use-yarn",
"yarn": ">= 1.0.0",
"node": ">= 16.5.0"
},
"scripts": {
"build": "rimraf ./build && tsc",
"dev": "ts-node-dev --respawn --inspect=9229 --transpile-only ./src/app.ts",
"dev6001": "ts-node-dev --inspect=6001 --transpile-only ./src/app.ts",
"dev6002": "ts-node-dev --inspect=6002 --transpile-only ./src/app.ts",
"start": "nodemon",
"inspect": "nodemon --inspect src/app.ts",
"test": "CONFIG_DIR='./docker/s1' LOG_LEVEL=error NEW_RELIC_ENABLED=false TS_NODE_PROJECT='./tsconfig.mocha.json' mocha -r ts-node/register \"tests/{utilz,services}/**/*.test.ts\" --timeout 12000000000 --require tests/root.ts --serial",
"lint:fix": "eslint --fix '**/*.{js,ts,jsx,tsx}'",
"format": "prettier --write '**/*.{js,ts,jsx,tsx}'",
"prepare": "husky install",
"build:proto": "scripts/protoc-generate.sh"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/push-protocol/push-snode.git"
},
"keywords": [
"epns",
"push",
"notifications",
"ios",
"android"
],
"author": "Push Protocol",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/push-protocol/push-snode/issues"
},
"homepage": "https://github.com/push-protocol/push-snode#readme",
"dependencies": {
"@solana/web3.js": "^1.95.3",
"async-mutex": "^0.5.0",
"axios": "^1.2.0",
"bech32": "^2.0.0",
"bs58": "^6.0.0",
"chai": "^4.3.6",
"chalk": "^4.1.2",
"cors": "^2.8.5",
"crypto-js": "^4.2.0",
"dotenv": "^8.2.0",
"ethereum-cryptography": "^3.0.0",
"ethers": "^5.7.2",
"express": "^4.19.2",
"express-json-rpc-router": "^1.4.0",
"lodash": "^4.17.21",
"logform": "^2.6.1",
"mysql": "2.18.1",
"nacl": "^0.1.3",
"node-schedule": "1.3.2",
"object-hash": "^3.0.0",
"pg-promise": "^10.12.0",
"redis": "^4.6.15",
"reflect-metadata": "^0.1.12",
"starknet": "^6.11.0",
"ts-luxon": "^4.0.1",
"ts-proto": "^2.0.3",
"ts-protoc-gen": "^0.15.0",
"tweetnacl": "^1.0.3",
"typedi": "^0.8.0",
"typescript": "^4.5.4",
"uuid": "^10.0.0",
"winston": "^3.2.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/crypto-js": "^4.2.2",
"@types/express": "^4.16.0",
"@types/lodash": "^4.14.118",
"@types/mocha": "^9.0.0",
"@types/mysql": "^2.15.21",
"@types/node": "^10.17.60",
"@types/object-hash": "^3.0.6",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"eslint": "^8.7.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.0.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"mocha": "^9.1.3",
"nodemon": "^2.0.1",
"prettier": "^3.3.3",
"ts-node": "^10.4.0",
"ts-node-dev": "1.0.0-pre.44",
"typescript": "^4.5.4"
}
}