-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
63 lines (63 loc) · 2.05 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
{
"name": "assisted-installer-app",
"version": "1.2.0",
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"scripts": {
"build": "fec build",
"clean": "rimraf node_modules dist .cache",
"deploy": "npm-run-all build lint test",
"lint": "npm-run-all lint:*",
"lint:js": "eslint src",
"lint:js:fix": "eslint src --fix",
"patch:hosts": "fec patch-etc-hosts",
"start": "HOT=true fec dev --clouddotEnv=stage --uiEnv=stable",
"start:federated": "fec static",
"test": "TZ=UTC jest --verbose --no-cache --passWithNoTests",
"postinstall": "ts-patch install && rimraf .cache",
"verify": "npm-run-all build lint test",
"prettier": "prettier --write src"
},
"dependencies": {
"@openshift-assisted/locales": "2.36.0",
"@openshift-assisted/types": "2.36.0",
"@openshift-assisted/ui-lib": "2.36.0",
"@redhat-cloud-services/frontend-components": "^4.1.0",
"axios": ">=0.22.0 <1.0.0",
"i18next": "^20.4.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^11.11.4",
"react-router-dom": "^5.3.3"
},
"devDependencies": {
"@redhat-cloud-services/eslint-config-redhat-cloud-services": "^2.0.3",
"@redhat-cloud-services/frontend-components-config": "^6.0.17",
"@redhat-cloud-services/tsc-transform-imports": "^1.0.4",
"@swc/core": "^1.3.96",
"@swc/jest": "^0.2.29",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.0",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@types/react-router-dom": "^5.3.3",
"@types/redux-logger": "^3.0.12",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"eslint": "^8.53.0",
"identity-obj-proxy": "^3.0.0",
"jest-environment-jsdom": "^29.7.0",
"jest_workaround": "^0.79.19",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"ts-patch": "^3.0.2",
"typescript": "^5.2.2",
"webpack-bundle-analyzer": "4.10.0"
},
"insights": {
"appname": "assisted-installer-app"
}
}