-
Notifications
You must be signed in to change notification settings - Fork 290
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.85 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.85 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
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
106
107
{
"name": "@tektoncd/dashboard",
"version": "0.68.0-alpha.1",
"private": true,
"type": "module",
"scripts": {
"build": "vite build",
"build:analyze": "vite build --config vite.config.analyze.js",
"e2e": "npm test --prefix packages/e2e",
"e2e:ci": "npm run test:ci --prefix packages/e2e",
"e2e:install": "npm ci --prefix packages/e2e",
"eslint:check": "npx eslint-config-prettier src/index.js",
"i18n:extract": "formatjs extract './{packages,src}/**/*.{js,jsx}' --ignore './packages/{**/node_modules,e2e}/**' --format simple --out-file src/nls/messages_en.json && node --env-file=.env scripts/i18n/extractMessages.cjs",
"i18n:import": "node scripts/i18n/importFromProperties.js",
"i18n:pseudo": "vite --mode i18n:pseudo",
"i18n:start": "vite --mode i18n",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"preview": "vite preview",
"start": "vite",
"storybook": "storybook dev -p 5000",
"storybook:build": "storybook build -o storybook-static && touch storybook-static/.nojekyll",
"storybook:deploy": "npx gh-pages --dist ./storybook-static --dotfiles --no-history --message \"Deploy Storybook to GitHub Pages\"",
"test": "vitest",
"version": "npm --workspaces version --preid alpha $npm_new_version && git add packages/",
"version:packages": "npm version --preid alpha -m \"Publish v%s of the @tektoncd/dashboard-* packages\""
},
"dependencies": {
"@carbon/react": "^1.106.0",
"@codemirror/legacy-modes": "^6.5.2",
"@tanstack/react-query": "^5.90.10",
"@tektoncd/dashboard-components": "*",
"@tektoncd/dashboard-utils": "*",
"@uiw/react-codemirror": "^4.25.9",
"git-url-parse": "^16.1.0",
"prop-types": "^15.7.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-intl": "^7.1.14",
"react-is": "^18.3.1",
"react-router-dom": "^6.30.3",
"reconnecting-websocket": "^4.4.0",
"yaml": "^2.8.3"
},
"devDependencies": {
"@eslint/compat": "^2.0.5",
"@eslint/js": "^9.39.4",
"@formatjs/cli": "^6.14.3",
"@rollup/plugin-yaml": "^4.1.2",
"@storybook/addon-docs": "^10.3.6",
"@storybook/addon-links": "^10.3.6",
"@storybook/addon-themes": "^10.3.6",
"@storybook/react-vite": "^10.3.6",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.0",
"@vitejs/plugin-react-swc": "^4.3.0",
"@vitest/coverage-istanbul": "^4.1.5",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-node": "^0.3.10",
"eslint-plugin-cypress": "^6.3.1",
"eslint-plugin-depend": "^1.5.0",
"eslint-plugin-formatjs": "^5.4.2",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-notice": "^1.0.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-storybook": "^10.3.6",
"globals": "^17.5.0",
"jsdom": "^29.0.2",
"msw": "^2.13.6",
"prettier": "^3.8.3",
"rollup-plugin-visualizer": "^7.0.1",
"sass-embedded": "^1.99.0",
"storybook": "^10.3.6",
"storybook-addon-remix-react-router": "^3.1.0",
"vite": "^8.0.10",
"vite-plugin-svgr": "^5.2.0",
"vitest": "^4.0.10"
},
"_devEngines": {
"runtime": {
"name": "node",
"onFail": "error",
"version": "^24.14.0"
},
"packageManager": {
"name": "npm",
"onFail": "error",
"version": "^11.9.0"
}
},
"engines": {
"node": "^24.14.0",
"npm": "^11.9.0"
},
"//": "Workspaces must be listed explicitly to ensure they're processed in the correct order until npm natively supports detecting the topological order. Exclude e2e as it needs to function as a standalone project and its dependencies should not be hoisted.",
"workspaces": [
"packages/utils",
"packages/components",
"packages/graph"
],
"overrides": {
"storybook": "$storybook"
}
}