forked from tektoncd/dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.98 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
106
107
108
109
110
111
112
113
{
"name": "@tektoncd/dashboard",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "webpack --config webpack.prod.js",
"build:analyze": "webpack --config webpack.prod.js --profile --json > stats.json && npx webpack-bundle-analyzer stats.json cmd/dashboard/kodata/",
"e2e": "npm test -w @tektoncd/dashboard-e2e",
"e2e:ci": "npm run test:ci -w @tektoncd/dashboard-e2e",
"eslint:check": "eslint --print-config src/index.js | eslint-config-prettier-check",
"i18n:extract": "node scripts/i18n/extractMessages.js",
"i18n:import": "node scripts/i18n/importFromProperties.js",
"lint": "eslint --ignore-path .gitignore .",
"lint:fix": "npm run lint -- --fix",
"start": "webpack-dev-server --hot --config webpack.dev.js",
"storybook": "start-storybook -p 5000",
"storybook:build": "build-storybook",
"storybook:deploy": "storybook-to-ghpages",
"test": "jest --watch",
"test:ci": "jest"
},
"dependencies": {
"@babel/runtime": "^7.19.0",
"@carbon/icons-react": "^10.49.0",
"@carbon/themes": "^10.55.0",
"@tanstack/react-query": "^4.10.1",
"@tanstack/react-query-devtools": "^4.10.1",
"@tektoncd/dashboard-components": "*",
"@tektoncd/dashboard-utils": "*",
"buffer": "^6.0.3",
"carbon-components": "^10.58.1",
"carbon-components-react": "^7.59.3",
"carbon-icons": "^7.0.7",
"core-js": "^3.25.4",
"git-url-parse": "^13.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.0",
"react-intl": "^6.1.2",
"react-router-dom": "^5.3.4",
"reconnecting-websocket": "^4.4.0"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-export-default-from": "^7.18.10",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.19.1",
"@babel/preset-env": "^7.19.3",
"@babel/preset-react": "^7.18.6",
"@storybook/addon-actions": "^6.5.12",
"@storybook/addon-essentials": "^6.5.12",
"@storybook/addon-storysource": "^6.5.12",
"@storybook/addons": "^6.5.12",
"@storybook/builder-webpack5": "^6.5.12",
"@storybook/manager-webpack5": "^6.5.12",
"@storybook/react": "^6.5.12",
"@storybook/storybook-deployer": "^2.8.12",
"@storybook/theming": "^6.5.12",
"@svgr/webpack": "^6.4.0",
"@testing-library/react": "^12.1.5",
"@testing-library/react-hooks": "^8.0.1",
"babel-loader": "^8.2.5",
"babel-plugin-formatjs": "^10.3.29",
"cross-env": "^7.0.2",
"css-loader": "^6.7.1",
"eslint": "^8.24.0",
"eslint-config-airbnb": "^19.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "2.12.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-notice": "^0.9.10",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-webpack-plugin": "^3.2.0",
"file-loader": "^6.0.0",
"glob": "^8.0.3",
"history": "^5.3.0",
"html-webpack-plugin": "^5.0.0",
"jest": "^29.1.2",
"jest-environment-jsdom": "^29.1.2",
"lodash.difference": "^4.5.0",
"lodash.omit": "^4.5.0",
"mini-css-extract-plugin": "^2.6.1",
"msw": "^0.47.4",
"node-fetch": "^3.2.10",
"prettier": "^2.7.1",
"sass": "^1.55.0",
"sass-loader": "^13.0.2",
"style-loader": "^3.3.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0"
},
"engines": {
"node": "^16.13.2",
"npm": "^8.1.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"
]
}