This repository has been archived by the owner on Jan 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
102 lines (102 loc) · 3.65 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
{
"name": "stedi-bootstrap",
"version": "1.0.0",
"description": "One-click deploy X12 EDI system on Stedi",
"type": "module",
"scripts": {
"bootstrap": "npm run configure-storage && npx ts-node-esm ./src/setup/bootstrap.ts && npm run deploy",
"destroy": "ts-node-esm ./src/setup/destroy.ts",
"deploy": "ts-node-esm ./src/setup/deploy.ts",
"build": "rm -rf ./dist && npm run generate-schema-types && tsc --build",
"upgrade-core": "ts-node-esm ./src/setup/upgradeCore.ts",
"configure-buckets": "ts-node-esm ./src/setup/configureBuckets.ts",
"configure-storage": "npm run ensure-keyspaces-exist && npm run configure-buckets",
"ensure-keyspaces-exist": "ts-node-esm ./src/setup/bootstrap/ensureKeyspacesExist.ts",
"execute": "ts-node-esm ./src/scripts/execute.ts",
"write-edi": "ts-node-esm ./src/scripts/writeEdi.ts",
"migrate": "ts-node-esm ./src/setup/migrate.ts",
"test": "DOTENV_CONFIG_PATH=.env.test node -r dotenv/config ./node_modules/.bin/ava",
"coverage": "DOTENV_CONFIG_PATH=.env.test c8 node -r dotenv/config ./node_modules/.bin/ava",
"lint": "npx eslint --fix \"src/**/*.ts\"",
"generate-schema-types": "ts-node-esm ./src/scripts/schema-zod-types.ts",
"deploy-transform-split-loop": "ts-node-esm ./src/optional-functions/transform/split-loop/deploy.ts",
"deploy-billing-usage-poller": "ts-node-esm ./src/optional-functions/billing/usage-poller/deploy.ts"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@ava/typescript": "^4.0.0",
"@aws-sdk/middleware-retry": "3.329.0",
"@aws-sdk/types": "3.272.0",
"@smithy/types": "1.2.0",
"@smithy/util-stream-node": "2.0.19",
"@stedi/sdk-client-as2": "^0.1.51",
"@stedi/sdk-client-buckets": "^0.1.51",
"@stedi/sdk-client-cores": "^0.1.51",
"@stedi/sdk-client-edi-translate": "^0.1.51",
"@stedi/sdk-client-events": "^0.1.51",
"@stedi/sdk-client-functions": "^0.1.51",
"@stedi/sdk-client-guides": "^0.1.51",
"@stedi/sdk-client-mappings": "^0.1.51",
"@stedi/sdk-client-partners": "^0.4.60",
"@stedi/sdk-client-queues": "^0.1.51",
"@stedi/sdk-client-sftp": "^0.1.51",
"@stedi/sdk-client-stash": "^0.1.51",
"@stedi/x12-tools": "^1.11.2",
"@supercharge/promise-pool": "^2.4.0",
"@types/lodash-es": "^4.17.7",
"@types/node": "^18.11.18",
"@types/node-fetch": "^2.6.3",
"@types/object-hash": "^3.0.2",
"@types/papaparse": "^5.3.7",
"@types/ssh2-sftp-client": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"ava": "^5.2.0",
"aws-sdk-client-mock": "2.1.1",
"basic-ftp": "^5.0.2",
"c8": "^7.13.0",
"date-fns": "^2.29.3",
"date-fns-tz": "^2.0.0",
"dotenv": "^16.0.3",
"esbuild": "^0.17.15",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"json-schema-to-zod": "^0.6.3",
"jszip": "^3.10.1",
"lodash-es": "^4.17.21",
"mockdate": "^3.0.5",
"nock": "^13.3.0",
"node-fetch": "^3.3.1",
"object-hash": "^3.0.0",
"papaparse": "^5.4.1",
"prettier": "^2.8.7",
"serialize-error": "^11.0.0",
"sinon": "^15.0.3",
"ssh2-sftp-client": "^9.0.4",
"ts-node": "^10.9.1",
"typescript": "^5.0.3",
"umzug": "^3.2.1",
"zod": "^3.22.4"
},
"prettier": {
"useTabs": false
},
"ava": {
"environmentVariables": {
"STEDI_FUNCTION_NAME": "function-under-test",
"EXECUTIONS_BUCKET_NAME": "executions-bucket-test"
},
"typescript": {
"rewritePaths": {
"src/": "dist/src/"
},
"compile": "tsc"
}
},
"volta": {
"node": "18.15.0",
"npm": "9.6.2"
}
}