forked from nmstate-archive/nmstate-console-plugin
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.95 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.95 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
{
"name": "nmstate-console-plugin",
"version": "0.0.1",
"private": true,
"repository": "git@github.com:upalatucci/nmstate-console-plugin.git",
"license": "Apache-2.0",
"types": "./src/types/index.d.ts",
"scripts": {
"clean": "rm -rf dist",
"start": "npm run dev",
"build": "npm run clean && NODE_ENV=production npm run webpack",
"serve-build": "npm run build && npx http-server -p 9001 dist",
"dev": "npm run webpack serve",
"webpack": "webpack",
"start-console": "./start-console.sh",
"cypress": "cypress run --browser chrome",
"cypress:open": "cypress open",
"i18n": "i18next \"src/**/*.{js,jsx,ts,tsx}\" [-oc] -c i18next-parser.config.js && node ./i18n-scripts/set-english-defaults.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "jest",
"test-cypress-headless": "node --max-old-space-size=4096 ./node_modules/.bin/cypress run --env openshift=true --browser ${BRIDGE_E2E_BROWSER_NAME:=electron}",
"test:coverage": "jest --coverage",
"test:updateSnapshot": "jest --updateSnapshot",
"download-crds": "cd ./src/nmstate-types && ./download-nmstate-crds.sh && cd ../..",
"helm:lint": "helm lint deployment/nmstate-console-plugin/",
"helm:build": "mkdir -p tmp && helm package -d tmp deployment/nmstate-console-plugin/",
"memsource-upload": "./i18n-scripts/memsource-upload.sh",
"memsource-download": "./i18n-scripts/memsource-download.sh",
"export-pos": "./i18n-scripts/export-pos.sh",
"i18n-to-po": "node ./i18n-scripts/i18n-to-po.js",
"po-to-i18n": "node ./i18n-scripts/po-to-i18n.js"
},
"devDependencies": {
"@kubevirt-ui/kubevirt-api": "^1.4.2",
"@openshift-console/dynamic-plugin-sdk": "4.20.0",
"@openshift-console/dynamic-plugin-sdk-internal": "4.20.0",
"@openshift-console/dynamic-plugin-sdk-webpack": "4.20.0",
"@openshift/dynamic-plugin-sdk": "~5.0.1",
"@patternfly/react-core": "~6.4.0",
"@patternfly/react-icons": "~6.4.0",
"@patternfly/react-table": "~6.4.0",
"@patternfly/react-topology": "~6.4.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^28.1.6",
"@types/js-yaml": "^4.0.1",
"@types/node": "^18.0.0",
"@types/react": "^17.0.40",
"@types/react-router": "^5.1.15",
"@types/react-router-dom": "^5.3.2",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"classnames": "^2.5.1",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^6.7.1",
"cypress": "^12.17.4",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.1.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-testing-library": "^5.6.0",
"http-server": "^14.1.1",
"i18next-conv": "12.1.1",
"i18next-parser": "^9.3.0",
"immer": "^9.0.16",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"mini-svg-data-uri": "^1.4.4",
"pluralize": "^8.0.0",
"prettier": "^2.7.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-i18next": "^11.7.3",
"react-router": "5.3.x",
"react-router-dom": "5.3.x",
"react-router-dom-v5-compat": "^6.22.3",
"sass": "^1.97.1",
"sass-loader": "^12.4.0",
"style-loader": "^3.3.1",
"ts-jest": "^28.0.7",
"ts-node": "^10.8.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "5.7.x",
"use-immer": "^0.8.1",
"webpack": "^5.104.1",
"webpack-cli": "5.1.4",
"webpack-dev-server": "^5.2.3"
},
"dependencies": {
"@preact/signals-react": "^3.7.0",
"esbuild-loader": "^4.4.2",
"@patternfly/react-catalog-view-extension": "6.1.0",
"@patternfly/react-data-view": "^6.4.0",
"mocha": "^10.x",
"word-wrap": "^1.2.5"
},
"overrides": {
"@parcel/watcher": "2.5.1"
}
}