forked from tektoncd/dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.95 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
114
115
116
117
{
"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 dist/",
"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:carbon": "stylelint \"**/*.scss\"",
"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.16.7",
"@carbon/icons-react": "^10.47.0",
"@carbon/themes": "^10.52.0",
"@tektoncd/dashboard-components": "*",
"@tektoncd/dashboard-utils": "*",
"buffer": "^6.0.3",
"carbon-components": "^10.52.0",
"carbon-components-react": "^7.52.0",
"carbon-icons": "^7.0.7",
"core-js": "^3.20.3",
"git-url-parse": "^11.3.0",
"history": "^4.10.1",
"js-yaml": "^3.14.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": "^5.10.2",
"react-query": "3.16.1",
"react-router-dom": "^5.2.0",
"reconnecting-websocket": "^4.4.0"
},
"devDependencies": {
"@babel/core": "^7.16.12",
"@babel/eslint-parser": "^7.16.3",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-export-default-from": "^7.16.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.16.10",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@storybook/addon-actions": "^6.4.22",
"@storybook/addon-essentials": "^6.4.22",
"@storybook/addon-storysource": "^6.4.22",
"@storybook/addons": "^6.4.22",
"@storybook/builder-webpack5": "^6.4.22",
"@storybook/manager-webpack5": "^6.4.22",
"@storybook/react": "^6.4.22",
"@storybook/storybook-deployer": "^2.8.11",
"@storybook/theming": "^6.4.22",
"@svgr/webpack": "^6.2.0",
"@testing-library/react": "^11.2.2",
"@testing-library/react-hooks": "5.1.2",
"babel-loader": "^8.2.3",
"babel-plugin-react-intl": "^8.2.25",
"cross-env": "^7.0.2",
"css-loader": "^6.5.1",
"eslint": "^8.2.0",
"eslint-config-airbnb": "^19.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-notice": "^0.9.10",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-webpack-plugin": "^3.1.1",
"fetch-mock": "^9.10.7",
"file-loader": "^6.0.0",
"glob": "^7.1.6",
"html-webpack-plugin": "^5.0.0",
"jest": "^27.4.7",
"lodash.difference": "^4.5.0",
"lodash.omit": "^4.5.0",
"mini-css-extract-plugin": "^2.5.3",
"node-fetch": "^2.6.1",
"prettier": "^2.4.1",
"rimraf": "^2.7.1",
"sass": "^1.26.9",
"sass-loader": "^12.4.0",
"style-loader": "^3.3.1",
"stylelint": "^13.8.0",
"stylelint-plugin-carbon-tokens": "^0.11.2",
"webpack": "^5.67.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"webpack-merge": "^5.8.0"
},
"engines": {
"node": "^16.13.2",
"npm": "^8.1.2"
},
"overrides": {
"git-url-parse": {
"git-up": "4.0.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"
]
}