forked from Azure/LogicAppsUX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3.75 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
{
"name": "@microsoft/logicappsux",
"version": "4.57.0",
"devDependencies": {
"@biomejs/biome": "1.6.4",
"@eslint/eslintrc": "^3.0.2",
"@eslint/js": "^9.0.0",
"@faker-js/faker": "^8.4.1",
"@formatjs/cli": "^6.2.9",
"@playwright/test": "^1.43.1",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^15.0.2",
"@testing-library/react-hooks": "^8.0.1",
"@types/node": "^20.12.7",
"@types/react": "18.3.0",
"@types/react-dom": "18.3.0",
"@types/react-test-renderer": "^18.0.7",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-istanbul": "^1.5.0",
"@vitest/ui": "^1.5.0",
"D": "^1.0.0",
"archiver": "^7.0.1",
"child_process": "^1.0.2",
"common-es": "^1.0.1",
"concurrently": "^8.2.2",
"deepmerge-json": "^1.5.0",
"esbuild-plugin-less": "^1.3.3",
"esbuild-plugin-svg": "^0.1.0",
"esbuild-plugin-svgr": "^2.1.0",
"eslint": "8.56.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-formatjs": "^4.13.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"extract-zip": "^2.0.1",
"glob": "^10.3.12",
"globals": "^15.0.0",
"husky": "^9.0.11",
"jsdom": "^24.0.0",
"jsonc-eslint-parser": "^2.4.0",
"just-pnpm": "^1.0.2",
"lcov-result-merger": "^5.0.0",
"lint-staged": "^15.2.2",
"react-test-renderer": "^18.2.0",
"replace-in-file": "^7.1.0",
"rimraf": "^5.0.5",
"sherif": "^0.8.4",
"standard-version": "^9.5.0",
"tsup": "^8.0.2",
"turbo": "^1.13.3",
"typescript": "^5.4.5",
"typescript-eslint": "7.7.0",
"vite-plugin-mkcert": "^1.17.5",
"vite-plugin-node-polyfills": "^0.21.0",
"vitest": "^1.5.0"
},
"engines": {
"node": ">=18",
"pnpm": ">=9"
},
"license": "MIT",
"lint-staged": {
"*.{js,ts,tsx}": [
"npm run extract",
"eslint --cache --fix",
"biome check --apply"
]
},
"private": true,
"scripts": {
"postinstall": "pnpm templates",
"build": "turbo run build",
"build:extension": "turbo run build:extension",
"bump": "standard-version --no-verify",
"check": "biome check --apply .",
"compile:loc": "formatjs compile-folder --ast --format ./format.js \"Localize/lang\" \"libs/logic-apps-shared/src/intl/compiled-lang/\" ",
"compile:loc:psuedo": "formatjs compile \"Localize/lang/strings.json\" --ast --format ./format.js --out-file \"libs/logic-apps-shared/src/intl/compiled-lang/strings.en-XA.json\" --pseudo-locale en-XA",
"e2e:setup": "playwright install --with-deps",
"extract": "formatjs extract \"libs/**/*.{ts,tsx}\" --ignore \"libs/**/*.{d,test,spec}.{ts,tsx}\" --out-file Localize/lang/strings.json --format ./format.js",
"generateArmToken": "az account get-access-token --tenant 72f988bf-86f1-41af-91ab-2d7cd011db47 > ./apps/Standalone/src/environments/jsonImport/armToken.json",
"prepare": "husky || true",
"publish": "turbo run build:lib && pnpm publish -r",
"scrub-secrets:e2e": "node ./scrub-e2e-trace.js",
"start": "turbo run dev",
"start:arm": "npm run generateArmToken && npm run start",
"start:e2e": "turbo run e2e",
"test:lib": "turbo run test:lib",
"test:e2e": "playwright test",
"test:extension-unit": "turbo run test:extension-unit",
"testgen": "playwright codegen https://localhost:4200",
"vscode:designer:pack": "turbo run vscode:designer:pack",
"templates": "ts-node downloadTemplates.js"
},
"type": "module",
"dependencies": {
"dotenv": "^16.4.5",
"fs-extra": "^11.2.0",
"ts-node": "^10.9.2"
}
}