forked from tektoncd/dashboard
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
98 lines (98 loc) · 3.58 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
{
"name": "@tektoncd/dashboard",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "vite build",
"build:analyze": "vite build --config vite.config.analyze.js",
"e2e": "npm test -w @tektoncd/dashboard-e2e",
"e2e:ci": "npm run test:ci -w @tektoncd/dashboard-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 scripts/i18n/extractMessages.cjs",
"i18n:import": "node scripts/i18n/importFromProperties.js",
"i18n:pseudo": "vite --mode i18n:pseudo",
"i18n:start": "vite --mode i18n",
"lint": "eslint --ignore-path .gitignore .",
"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"
},
"dependencies": {
"@carbon/react": "^1.70.0",
"@codemirror/legacy-modes": "^6.4.2",
"@tanstack/react-query": "^4.36.1",
"@tanstack/react-query-devtools": "^4.36.1",
"@tektoncd/dashboard-components": "*",
"@tektoncd/dashboard-utils": "*",
"@uiw/react-codemirror": "^4.23.6",
"git-url-parse": "^15.0.0",
"js-yaml": "^4.1.0",
"lodash.clonedeep": "^4.5.0",
"lodash.keyby": "^4.6.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-intl": "^6.8.7",
"react-router-dom": "^6.28.0",
"reconnecting-websocket": "^4.4.0"
},
"devDependencies": {
"@formatjs/cli": "^6.3.8",
"@modyfi/vite-plugin-yaml": "^1.1.0",
"@storybook/addon-actions": "^8.4.2",
"@storybook/addon-essentials": "^8.4.2",
"@storybook/addon-links": "^8.4.2",
"@storybook/addon-storysource": "^8.4.2",
"@storybook/addon-themes": "^8.4.2",
"@storybook/manager-api": "^8.4.2",
"@storybook/preview-api": "^8.4.2",
"@storybook/react": "^8.4.2",
"@storybook/react-vite": "^8.4.2",
"@storybook/theming": "^8.3.0",
"@testing-library/react": "^12.1.5",
"@testing-library/react-hooks": "^8.0.1",
"@vitejs/plugin-react-swc": "^3.7.1",
"@vitest/coverage-istanbul": "^2.1.4",
"dotenv": "^16.4.5",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-cypress": "^3.6.0",
"eslint-plugin-formatjs": "^4.13.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-notice": "^1.0.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-storybook": "^0.11.0",
"jsdom": "^25.0.1",
"lodash.difference": "^4.5.0",
"lodash.omit": "^4.5.0",
"msw": "^2.6.4",
"prettier": "^3.3.3",
"rollup-plugin-visualizer": "^5.12.0",
"sass-embedded": "^1.80.6",
"storybook": "^8.3.0",
"storybook-addon-remix-react-router": "^3.0.1",
"vite": "^5.4.11",
"vite-plugin-svgr": "^4.3.0",
"vitest": "^2.0.4"
},
"engines": {
"node": "^20.18.0",
"npm": "^10.8.2"
},
"//": "Workspaces must be listed explicitly to ensure they're processed in the correct order until npm natively supports detecting the topological order",
"workspaces": [
"packages/utils",
"packages/components",
"packages/graph",
"packages/e2e"
]
}