-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 2.36 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
{
"name": "astro-lake-indexer",
"version": "1.0.0",
"description": "near-lake parser into indexer-like database",
"main": "build/index.js",
"scripts": {
"build": "tsc --build",
"clean": "tsc --build --clean",
"start": "node build/index.js",
"start:debug": "LOG_LEVEL=debug npm run start",
"start:trace": "LOG_LEVEL=trace npm run start",
"cli": "ts-node src/cli.ts",
"dev:start": "ts-node src/index.ts",
"dev:start:debug": "LOG_LEVEL=debug npm run dev:start",
"dev:start:trace": "LOG_LEVEL=trace npm run dev:start",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint --ext .ts src/",
"lint:fix": "eslint --ext .ts src/ --fix",
"pretest": "npm run lint",
"test": "echo \"Error: no test specified\" && exit 1",
"typeorm": "typeorm-ts-node-commonjs -d src/data-source.ts",
"migration:show": "npm run typeorm migration:show",
"migration:run": "npm run typeorm migration:run",
"migration:generate": "npm run typeorm migration:generate -n src/migrations/SchemaRefactoring",
"migration:revert": "npm run typeorm migration:revert",
"schema:log": "npm run typeorm schema:log",
"schema:sync": "npm run typeorm schema:sync",
"schema:drop": "npm run typeorm schema:drop"
},
"author": "",
"license": "ISC",
"engines": {
"npm": ">=7.0.0",
"node": ">=16.0.0"
},
"devDependencies": {
"@types/json-bigint": "1.0.1",
"@types/lodash": "4.14.182",
"@types/nconf": "0.10.3",
"@types/node": "18.0.4",
"@typescript-eslint/eslint-plugin": "5.30.6",
"@typescript-eslint/parser": "5.30.6",
"eslint": "8.19.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"prettier": "2.7.1",
"ts-node": "10.9.1",
"typescript": "4.7.4"
},
"dependencies": {
"@supercharge/promise-pool": "2.3.0",
"aws-sdk": "2.1174.0",
"dd-trace": "2.12.2",
"dotenv": "16.0.1",
"hot-shots": "9.2.0",
"ioredis": "5.2.0",
"json-bigint": "1.0.0",
"lodash": "4.17.21",
"log4js": "6.6.0",
"lru-cache": "7.13.0",
"nconf": "0.12.0",
"pg": "8.7.3",
"reflect-metadata": "0.1.13",
"ts-retry-promise": "0.7.0",
"typedi": "0.10.0",
"typeorm": "0.3.7",
"typeorm-naming-strategies": "4.1.0"
}
}