-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
83 lines (83 loc) · 2.92 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
{
"name": "@konveyor-ui/root",
"version": "2.1.0",
"license": "Apache-2.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/konveyor/tackle2-ui.git"
},
"scripts": {
"clean": "rimraf ./dist && npm run clean -ws --if-present",
"clean:all": "npm run clean && rimraf ./node_modules ./**/node_modules/",
"prepare": "husky install",
"postinstall": "npm run build -w common",
"dist": "rimraf ./dist && copyfiles -e 'node_modules/**' entrypoint.sh '**/package.json' '*/dist/**/*' ./dist",
"build": "npm run build -ws --if-present",
"start:dev:common": "npm run start:dev -w common",
"start:dev:server": "npm run start:dev -w server",
"start:dev:client": "npm run start:dev -w client",
"start:dev": "concurrently -n port-forward,common,client -c 'white.bold.inverse,green.bold.inverse,blue.bold.inverse' 'npm:port-forward' 'npm:start:dev:common' 'npm:start:dev:client'",
"start": "npm run build -w common -w client && npm run start -w server",
"test": "npm run test -ws --if-present --",
"lint": "npm run lint -ws --if-present --",
"port-forward:hub": "kubectl port-forward svc/tackle-hub -n konveyor-tackle 9002:8080",
"port-forward:keycloak": "kubectl port-forward svc/tackle-keycloak-sso -n konveyor-tackle 9001:8080",
"port-forward": "concurrently -c auto 'npm:port-forward:*'"
},
"lint-staged": {
"package-lock.json": "./scripts/verify_lock.mjs",
"!(package-lock.json)*": "prettier --ignore-unknown --write"
},
"workspaces": [
"common",
"server",
"client"
],
"engines": {
"node": ">=20.12.2",
"npm": "^9.5.0 || ^10.5.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-run": "^3.0.2",
"@rollup/plugin-typescript": "^11.1.6",
"@rollup/plugin-virtual": "^3.0.2",
"@tanstack/eslint-plugin-query": "^4.34.1",
"@types/jest": "^29.5.4",
"@types/node": "^18.14.2",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"concurrently": "^8.2.0",
"copyfiles": "^2.4.1",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^3.0.0",
"express": "^4.19.2",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-resolve": "^29.7.0",
"jest-watch-typeahead": "^2.2.2",
"lint-staged": "^14.0.1",
"prettier": "^3.0.2",
"rimraf": "^4.4.1",
"rollup": "^3.29.4",
"rollup-plugin-copy": "^3.5.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"type-fest": "^3.13.0",
"typescript": "^5.1.6"
},
"overrides": {
"follow-redirects": "^1.15.6",
"webpack-dev-server": {
"express": "$express"
}
}
}