forked from tektoncd/dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.76 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
{
"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/icons-react": "^10.49.2",
"@carbon/themes": "^10.55.3",
"@codemirror/legacy-modes": "^6.3.3",
"@tanstack/react-query": "^4.29.3",
"@tanstack/react-query-devtools": "^4.32.0",
"@tektoncd/dashboard-components": "*",
"@tektoncd/dashboard-utils": "*",
"@uiw/react-codemirror": "^4.21.11",
"carbon-components": "^10.58.10",
"carbon-components-react": "^7.59.12",
"carbon-icons": "^7.0.7",
"git-url-parse": "^13.1.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-hot-loader": "^4.13.1",
"react-intl": "^6.4.3",
"react-router-dom": "^5.3.4",
"react-router-dom-v5-compat": "^6.4.5",
"reconnecting-websocket": "^4.4.0"
},
"devDependencies": {
"@formatjs/cli": "^6.1.3",
"@modyfi/vite-plugin-yaml": "^1.0.4",
"@storybook/addon-actions": "^7.3.2",
"@storybook/addon-essentials": "^7.3.2",
"@storybook/addon-links": "^7.3.2",
"@storybook/addon-storysource": "^7.3.2",
"@storybook/addons": "^7.3.2",
"@storybook/react": "^7.3.2",
"@storybook/react-vite": "^7.3.2",
"@storybook/theming": "^7.3.2",
"@testing-library/react": "^12.1.5",
"@testing-library/react-hooks": "^8.0.1",
"@vitejs/plugin-react-swc": "^3.3.2",
"@vitest/coverage-istanbul": "^0.34.1",
"dotenv": "^16.3.1",
"eslint": "^8.48.0",
"eslint-config-airbnb": "^19.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-cypress": "^2.13.3",
"eslint-plugin-formatjs": "^4.10.3",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-notice": "^0.9.10",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.13",
"glob": "^10.3.3",
"history": "^5.3.0",
"jsdom": "^22.1.0",
"lodash.difference": "^4.5.0",
"lodash.omit": "^4.5.0",
"msw": "^1.2.1",
"prettier": "^3.0.2",
"rollup-plugin-visualizer": "^5.9.2",
"sass": "npm:sass-embedded@^1.66.1",
"storybook": "^7.3.2",
"vite": "^4.4.9",
"vite-plugin-html": "^3.2.0",
"vite-plugin-svgr": "^3.2.0",
"vitest": "^0.34.3"
},
"engines": {
"node": "^18.17.0",
"npm": "^9.6.7"
},
"//": "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"
]
}