This repository has been archived by the owner on Oct 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 3.18 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
{
"name": "booster-testing-utilities-processes",
"description": "Patterns and helpers to build and test Booster.cloud applications via defined processes.",
"version": "0.1.0",
"author": "@ClaytonFarr",
"homepage": "https://github.com/ClaytonFarr/booster-app-process-testing",
"license": "MIT",
"main": "dist/index.js",
"repository": "",
"engines": {
"node": ">=14.0.0"
},
"types": "lib/index.d.ts",
"comments": {
"start:testing-script": "When testing locally Vitest MODE=test env var is not available to app server; if needed use this script to start app server to add var manually"
},
"scripts": {
"start": "boost start -e local",
"start:testing": "MODE=test boost start -e local",
"deploy-test": "boost deploy -e test",
"deploy-dev": "boost deploy -e development",
"deploy-prod": "boost deploy -e production",
"nuke-test": "boost nuke -e test --force",
"nuke-dev": "boost nuke -e development",
"nuke-prod": "boost nuke -e production",
"-": "",
"lint:check": "eslint --ext '.js,.ts' **/*.ts",
"lint:fix": "eslint --quiet --fix --ext '.js,.ts' **/*.ts",
"compile": "ttsc -b tsconfig.json",
"clean": "rimraf ./dist tsconfig.tsbuildinfo",
"--": "",
"test:local": "TESTED_PROVIDER=LOCAL BOOSTER_ENV=test nyc --extension .ts vitest",
"test:local+ui": "TESTED_PROVIDER=LOCAL BOOSTER_ENV=test nyc --extension .ts vitest --ui",
"test:local+coverage": "TESTED_PROVIDER=LOCAL BOOSTER_ENV=test nyc --extension .ts vitest --coverage --ui",
"test:local:unit": "TESTED_PROVIDER=LOCAL BOOSTER_ENV=test nyc --extension .ts vitest --dir \"test/unit\" --ui",
"test:local:integration": "TESTED_PROVIDER=LOCAL BOOSTER_ENV=test nyc --extension .ts vitest --dir \"test/integration --ui",
"---": "",
"test:live": "boost deploy -e test; TESTED_PROVIDER=AWS AWS_SDK_LOAD_CONFIG=true BOOSTER_ENV=test nyc --extension .ts vitest; boost nuke -e test --force",
"----": "",
"test:processes": "TESTED_PROVIDER=LOCAL BOOSTER_ENV=test nyc --extension .ts vitest --dir test/_processes",
"test:process-tools": "TESTED_PROVIDER=LOCAL nyc --extension .ts vitest --dir test/helpers/process-test-helper/tests"
},
"dependencies": {
"@boostercloud/framework-core": "^0.28.0",
"@boostercloud/framework-provider-aws": "*",
"@boostercloud/framework-types": "^0.28.0"
},
"devDependencies": {
"@boostercloud/application-tester": "^0.28.0",
"@boostercloud/framework-provider-aws-infrastructure": "*",
"@boostercloud/framework-provider-local": "^0.28.0",
"@boostercloud/framework-provider-local-infrastructure": "^0.28.0",
"@faker-js/faker": "^6.3.1",
"@types/node": "17.0.31",
"@typescript-eslint/eslint-plugin": "5.22.0",
"@typescript-eslint/parser": "5.22.0",
"@vitest/ui": "^0.10.5",
"c8": "^7.11.2",
"colorette": "^2.0.16",
"eslint": "8.14.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.0.0",
"graphql-request": "^4.2.0",
"graphql-tag": "^2.12.6",
"metadata-booster": "0.4.1",
"nyc": "15.1.0",
"prettier": "2.6.2",
"rimraf": "^3.0.2",
"ts-node": "10.7.0",
"ttypescript": "1.5.13",
"typescript": "4.6.4",
"vitest": "^0.10.5"
}
}