-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.21 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 3.21 KB
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
{
"name": "@upstreamapp/fortuna",
"version": "0.2",
"description": "Your best source of tokens in an address",
"main": "dist/client/index.js",
"types": "dist/client/index.d.ts",
"scripts": {
"test": "NODE_ENV=test && jest --coverage",
"test:quick": "NODE_OPTIONS=--max-old-space-size=8192 NODE_ENV=test && node --expose-gc ./node_modules/.bin/jest -i --detectOpenHandles --logHeapUsage --no-cache --collectCoverage",
"lint": "tsc --noEmit && ./node_modules/.bin/eslint --fix --ext .js,.ts src/",
"build": "rm -rf dist && tsc --project tsconfig.json",
"monitoring": "node dist/monitoringServer.js",
"querying": "node dist/queryingServer.js",
"tokenInfo": "node dist/tokenInfoServer.js",
"contractInfo": "node dist/contractInfoServer.js",
"start:monitoring": "doppler run -- npm run monitoring",
"start:querying": "doppler run -- npm run querying",
"start:tokenInfo": "doppler run -- npm run tokenInfo",
"start:contractInfo": "doppler run -- npm run contractInfo",
"codegen:build": "tsc --esModuleInterop codegen/**/generator.ts",
"migration:create": "npm run codegen:build && node codegen/migration/generator.js",
"migration:up": "sequelize-cli db:migrate",
"migration:down": "sequelize-cli db:migrate:undo",
"migration:create-dev": "make create-dev-migration",
"preinstall": "bash ./check-version.sh "
},
"dependencies": {
"@types/bluebird": "^3.5.36",
"@types/pg": "^8.6.5",
"aws-sdk": "^2.1225.0",
"axios": "^0.27.2",
"bignumber.js": "^9.1.0",
"bluebird": "^3.7.2",
"body-parser": "^1.20.0",
"date-fns": "^2.29.3",
"dotenv": "^16.0.2",
"ethers": "^5.6.9",
"express": "^5.0.0-beta.1",
"hot-shots": "^9.2.0",
"lodash": "^4.17.21",
"module-alias": "^2.2.2",
"moment": "^2.29.4",
"node-pg-format": "^1.3.5",
"pg": "^8.8.0",
"sequelize": "^6.23.1",
"sequelize-typescript": "^2.1.3",
"source-map-support": "^0.5.21",
"sqs-consumer": "^5.7.0",
"web3-eth-abi": "^1.7.5",
"winston": "^3.8.1"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@types/express": "^4.17.13",
"@types/jest": "^29.4.0",
"@types/lodash": "^4.14.184",
"@types/node": "^18.7.18",
"@types/pg-format": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"babel-jest": "^29.4.1",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.3.6",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.4.1",
"jest-junit": "^15.0.0",
"prettier": "^2.7.1",
"sequelize-cli": "^6.4.1",
"ts-jest": "^29.0.5",
"typescript": "^4.7.4"
},
"_moduleAliases": {
"@models": "dist/models",
"@utils": "dist/utils",
"@lib": "dist/lib",
"@types": "dist/@types"
},
"repository": {
"type": "git",
"url": "git+https://github.com/upstreamapp/fortuna.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/upstreamapp/fortuna/issues"
},
"homepage": "https://github.com/upstreamapp/fortuna#readme"
}