-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 2.02 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
{
"name": "argus",
"private": true,
"type": "module",
"packageManager": "pnpm@11.21.0",
"scripts": {
"dev": "pnpm --filter @argus/enterprise dev",
"dev:platform": "pnpm --filter @argus/platform dev",
"dev:card": "pnpm --filter @argus/card-runtime dev",
"build": "node scripts/build-web.mjs mock",
"build:real": "node scripts/build-web.mjs real",
"check:real-build": "pnpm build:real && node scripts/check-real-build.mjs",
"smoke:web": "go run ./cmd/argus-dev check web-entrypoints",
"check:bundle": "node scripts/check-bundle-budget.mjs",
"check:i18n": "node scripts/check-i18n-keys.mjs",
"check:styles": "node scripts/check-web-styles.mjs",
"typecheck": "pnpm -r --if-present typecheck",
"test": "pnpm -r --if-present test && pnpm check:i18n",
"lint": "eslint web --max-warnings=0 && node --test scripts/check-form-semantics.test.mjs && node scripts/check-form-semantics.mjs && pnpm check:styles",
"contract:lint": "go run ./cmd/argus-dev contracts lint",
"contract:bundle": "go run ./cmd/argus-dev contracts generate",
"contract:generate": "go run ./cmd/argus-dev contracts generate",
"format:web": "prettier --write 'web/**/*.{ts,tsx,css,json,html}'",
"e2e": "pnpm --filter @argus/enterprise e2e"
},
"devDependencies": {
"@axe-core/playwright": "^4.13.0",
"@eslint/js": "^9.32.0",
"@playwright/test": "^1.54.2",
"@redocly/cli": "1.34.5",
"@tailwindcss/vite": "^4.1.11",
"@testing-library/jest-dom": "^6.6.4",
"@testing-library/react": "^16.3.0",
"@types/node": "^24.1.0",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
"@vitejs/plugin-react": "^4.7.0",
"eslint": "^9.32.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.3.0",
"jsdom": "^26.1.0",
"openapi-typescript": "7.9.1",
"prettier": "^3.6.2",
"tailwindcss": "^4.1.11",
"typescript": "^5.8.3",
"typescript-eslint": "^8.38.0",
"vite": "^7.0.6",
"vitest": "^3.2.4"
}
}