-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
62 lines (62 loc) · 2.43 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
{
"name": "showwhy",
"private": true,
"version": "2.0.0",
"description": "MSR Resilience Causal Platform",
"main": "index.js",
"repository": "[email protected]:v3/msresearch/Resilience/causal-platform",
"author": "Chris Trevino <[email protected]>",
"license": "UNLICENSED",
"scripts": {
"_acceptance_test_packages": "turbo run acceptance_test",
"_fix_packages": "turbo run fix",
"_check_packages": "turbo run check",
"_ci_packages": "turbo run ci",
"rome_fix": "rome check . --apply-suggested",
"rome_ci": "rome ci .",
"clean": "turbo run clean --parallel",
"assets": "turbo run assets",
"build": "turbo run build",
"force_build": "turbo run build --force",
"archive": "turbo run archive",
"poetry_install": "turbo run poetry_install --parallel",
"check": "run-s _check_packages rome_ci",
"fix": "run-s _fix_packages rome_fix format",
"format": "rome format . --write",
"test": "turbo run test",
"ci": "run-s _ci_packages rome_ci",
"acceptance_test": "start-server-and-test start http://localhost:3000 _acceptance_test_packages",
"start_webapps": "echo 'use the start_frontend command instead' && exit 1'",
"start_frontend": "cross-env EXPOSURE_API_URL=http://localhost:8081/api/exposure DISCOVER_API_URL=http://localhost:8081/api/discover EVENTS_API_URL=http://localhost:8081/api/events turbo run start --parallel",
"start_frontend_raw": "turbo run start --parallel",
"start": "docker compose --profile all up",
"start_fresh": "docker compose --profile all build && docker compose --profile all up",
"start_backend": "docker compose --profile backend up",
"start_backend_fresh": "docker compose --profile backend build && docker compose --profile backend up",
"deploy": "turbo run deploy",
"is_clean": "git checkout .npmrc && git diff-index HEAD --quiet || (git status && error_not_clean)",
"prettify": "essex prettify",
"stories": "yarn start:storybook",
"update_sdks": "yarn dlx @yarnpkg/sdks vscode"
},
"devDependencies": {
"@essex/eslint-config": "^20.5.1",
"@essex/eslint-plugin": "^20.5.1",
"@essex/jest-config": "^21.0.20",
"@essex/prettier-config": "^18.0.7",
"@essex/scripts": "^24.0.2",
"cross-env": "^7.0.3",
"eslint": "^8.32.0",
"jest": "^29.4.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.3",
"rome": "^11.0.0",
"start-server-and-test": "^1.15.3",
"turbo": "1.6.3",
"typescript": "^4.9.4"
},
"workspaces": [
"javascript/*"
],
"packageManager": "[email protected]"
}