forked from alantech/iasql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
127 lines (127 loc) · 5.03 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "iasql",
"version": "0.1.6-beta",
"description": "Infrastructure as SQL",
"license": "AGPL-3.0-only",
"main": "dist/index.js",
"scripts": {
"build": "yarn clean && tsc && copyfiles -u 1 src/**/*.sql dist/ && copyfiles -u 1 src/**/*.json dist/",
"clean": "rm -rf dist",
"lint": "tslint --project .",
"changes-in-version": "IASQL_ENV=ci ./src/scripts/check_changes_in_right_version.sh",
"test": "IASQL_ENV=test jest -i",
"test:local": "IASQL_ENV=test export $(cat .env | xargs) && yarn test",
"coverage": "IASQL_ENV=test jest -i --coverage --forceExit",
"coverage:local": "IASQL_ENV=test export $(cat .env | xargs) && yarn coverage",
"serve": "node --max_old_space_size=8192 dist/index.js",
"serve:debug": "yarn build && node --inspect=0.0.0.0:9229 --max_old_space_size=8192 dist/index.js",
"start": "yarn serve",
"start:debug": "nodemon -e ts -w ./src -x yarn serve:debug",
"gen-sql": "IASQL_ENV=ci ts-node ./node_modules/.bin/typeorm migration:generate -n",
"migrate": "IASQL_ENV=ci ts-node ./node_modules/.bin/typeorm migration:run",
"gen-module": "IASQL_ENV=ci ./.module_migration.sh",
"docker-build": "docker build -t iasql:latest .",
"docker-build:debug": "docker build -f ./Dockerfile.debug -t iasql:latest-debug .",
"docker-run": "docker run -e IASQL_ENV=ci -p 9876:9876 -p 5432:5432 --name iasql iasql:latest",
"docker-run:detach": "docker run -d -e IASQL_ENV=ci -p 9876:9876 -p 5432:5432 --name iasql iasql:latest",
"docker-run:debug": "docker run -e IASQL_ENV=debug -p 9876:9876 -p 5432:5432 -p 127.0.0.1:9229:9229 --name iasql-debug -v $PWD/src:/engine/src -v /engine/node_modules iasql:latest-debug",
"docker-run-vol": "docker run -e IASQL_ENV=ci -p 9876:9876 -p 5432:5432 -v $(dirname $PWD)/db:/var/lib/postgresql/14/main --name iasql iasql:latest",
"version": "./.version.sh",
"develop": "./.develop.sh",
"style": "npx prettier --config .prettierrc 'src/**/*[.ts, .sql]' 'test/**/*.ts' --check",
"format": "npx prettier --config .prettierrc 'src/**/*[.ts, .sql]' 'test/**/*.ts' --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alantech/iasql.git"
},
"keywords": [
"iasql",
"devops",
"iac"
],
"author": "David Ellis <[email protected]>",
"bugs": {
"url": "https://github.com/alantech/iasql/issues"
},
"homepage": "https://iasql.com",
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/callsite": "^1.0.31",
"@types/express": "^4.17.17",
"@types/jest": "^27.5.0",
"@types/lodash.clonedeep": "^4.5.7",
"@types/lodash.isequal": "^4.5.6",
"@types/lodash.pick": "^4.4.7",
"@types/node": "^18.15.3",
"@types/pg": "^8.6.5",
"@types/pg-format": "^1.0.2",
"@types/semver": "^7.3.10",
"@types/sshpk": "^1.17.1",
"@types/uuid": "^9.0.1",
"aws-sdk-client-mock": "^2.1.1",
"copyfiles": "^2.4.1",
"jest": "^27.5.1",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"prettier-plugin-sql": "^0.13.0",
"ts-jest": "^27.1.3",
"ts-node-dev": "^2.0.0",
"tslint": "^6.1.3",
"typescript": "^4.9.4"
},
"dependencies": {
"@aws-sdk/client-acm": "^3.290.0",
"@aws-sdk/client-apigatewayv2": "^3.290.0",
"@aws-sdk/client-appsync": "^3.290.0",
"@aws-sdk/client-cloudfront": "^3.290.0",
"@aws-sdk/client-cloudwatch": "^3.290.0",
"@aws-sdk/client-cloudwatch-logs": "^3.290.0",
"@aws-sdk/client-codebuild": "^3.290.0",
"@aws-sdk/client-codedeploy": "^3.290.0",
"@aws-sdk/client-codepipeline": "^3.290.0",
"@aws-sdk/client-dynamodb": "^3.290.0",
"@aws-sdk/client-ec2": "^3.291.0",
"@aws-sdk/client-ecr": "^3.290.0",
"@aws-sdk/client-ecr-public": "^3.290.0",
"@aws-sdk/client-ecs": "^3.290.0",
"@aws-sdk/client-elastic-load-balancing-v2": "^3.290.0",
"@aws-sdk/client-elasticache": "^3.290.0",
"@aws-sdk/client-iam": "^3.291.0",
"@aws-sdk/client-lambda": "^3.290.0",
"@aws-sdk/client-memorydb": "^3.290.0",
"@aws-sdk/client-rds": "^3.290.0",
"@aws-sdk/client-route-53": "^3.290.0",
"@aws-sdk/client-s3": "^3.290.0",
"@aws-sdk/client-secrets-manager": "^3.290.0",
"@aws-sdk/client-sns": "^3.290.0",
"@aws-sdk/client-sqs": "^3.290.0",
"@aws-sdk/client-ssm": "^3.290.0",
"@aws-sdk/client-sts": "^3.272.0",
"@aws-sdk/middleware-retry": "^3.160.0",
"@aws-sdk/util-waiter": "^3.162.0",
"@graphile/logger": "^0.2.0",
"@logdna/logger": "^2.6.6",
"@sentry/node": "^7.43.0",
"callsite": "^1.0.0",
"class-validator": "^0.14.0",
"express": "^4.18.2",
"fastest-levenshtein": "^1.0.14",
"lodash.clonedeep": "^4.5.0",
"lodash.isequal": "^4.5.0",
"lodash.pick": "^4.4.0",
"pg": "^8.10.0",
"pg-format": "^1.0.4",
"pgsql-parser": "^13.3.14",
"posthog-node": "^2.2.3",
"reflect-metadata": "^0.1.13",
"semver": "^7.3.7",
"sshpk": "^1.17.0",
"typeorm": "^0.3.12",
"typeorm-naming-strategies": "^4.1.0",
"uuid": "^9.0.0"
},
"resolutions": {
"libpg-query": "14.0.0"
}
}