-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 2.15 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
{
"name": "block-ingestor",
"version": "1.0.0",
"description": "Microservice that ingests ERC20 transactions for Colony Network Contracts",
"main": "index.ts",
"scripts": {
"build": "rm -rf dist/* && npx tsc",
"start": "node -r ts-node/register/transpile-only -r tsconfig-paths/register dist/index.js",
"dev": "NODE_ENV=development ts-node-dev -r tsconfig-paths/register src/index.ts",
"prod": "npm run build && NODE_ENV=production npm run start",
"typecheck": "tsc --noEmit",
"lint": "eslint src/ --ext .ts",
"preinstall": "bash scripts/generate-temp-files.sh",
"prepare": "husky install",
"codegen": "graphql-codegen -w \"src/**/*.graphql\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/JoinColony/tx-ingestor.git"
},
"author": "Raul Glogovetan <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/JoinColony/tx-ingestor/issues"
},
"homepage": "https://github.com/JoinColony/tx-ingestor",
"dependencies": {
"@colony/colony-js": "7.2.0",
"@colony/events": "3.0.0",
"@magicbell/core": "^5.0.16",
"aws-amplify": "^4.3.43",
"cross-fetch": "^4.0.0",
"dotenv": "^16.0.3",
"ethers": "^5.7.2",
"express": "^4.18.2",
"fs-extra": "^10.1.0",
"graphql": "^16.6.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@graphql-codegen/cli": "^3.3.1",
"@graphql-codegen/typescript": "^3.0.4",
"@graphql-codegen/typescript-document-nodes": "^3.0.4",
"@graphql-codegen/typescript-operations": "^3.0.4",
"@types/express": "^4.17.14",
"@types/fs-extra": "^9.0.13",
"@types/lodash": "^4.14.202",
"@types/node": "^18.11.9",
"@types/node-persist": "^3.1.3",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.4.0",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.0",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.1.2",
"typescript": "^4.8.4"
}
}