This repository was archived by the owner on Sep 25, 2023. It is now read-only.
forked from Stedi-Demos/bootstrap-archived
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.52 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.52 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
{
"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 && npm run enable-notifications",
"destroy": "ts-node-esm ./src/setup/destroy.ts",
"deploy": "ts-node-esm ./src/setup/deploy.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",
"enable-notifications": "ts-node-esm ./src/setup/enableBucketNotifications.ts",
"write-edi": "ts-node-esm ./src/scripts/writeEdi.ts",
"execute": "ts-node-esm ./src/scripts/execute.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"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@ava/typescript": "^3.0.1",
"@aws-sdk/types": "3.226.0",
"@stedi/sdk-client-as2": "^0.1.27",
"@stedi/sdk-client-buckets": "^0.0.23",
"@stedi/sdk-client-edi-translate": "^0.0.46",
"@stedi/sdk-client-functions": "^0.0.23",
"@stedi/sdk-client-guides": "^0.0.46",
"@stedi/sdk-client-mappings": "^0.0.46",
"@stedi/sdk-client-partners": "^0.1.5",
"@stedi/sdk-client-sftp": "^0.0.46",
"@stedi/sdk-client-stash": "^0.0.46",
"@stedi/x12-tools": "^1.3.2",
"@ts2asl/asl-lib": "^0.1.35",
"@types/node": "^18.11.18",
"@types/node-fetch": "^2.6.2",
"@types/object-hash": "^3.0.2",
"@types/ssh2-sftp-client": "^9.0.0",
"ava": "^5.1.0",
"aws-sdk-client-mock": "2.0.1",
"basic-ftp": "^5.0.2",
"c8": "^7.12.0",
"date-fns": "^2.29.3",
"dotenv": "^16.0.3",
"esbuild": "^0.16.16",
"jszip": "^3.10.1",
"mockdate": "^3.0.5",
"nock": "^13.3.0",
"node-fetch": "^3.3.0",
"object-hash": "^3.0.0",
"prettier": "^2.8.4",
"serialize-error": "^11.0.0",
"sinon": "^15.0.1",
"ssh2-sftp-client": "^9.0.4",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"umzug": "^3.2.1",
"zod": "^3.20.2"
},
"prettier": {
"useTabs": false
},
"ava": {
"typescript": {
"rewritePaths": {
"src/": "dist/"
},
"compile": "tsc"
}
},
"volta": {
"node": "16.19.1",
"npm": "9.5.1"
}
}