-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
78 lines (78 loc) · 3.54 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
{
"name": "@monorepo/root",
"version": "0.0.1",
"description": "forklift-console-plugin monorepo root",
"license": "Apache-2.0",
"private": true,
"repository": "https://github.com/kubev2v/forklift-console-plugin.git",
"workspaces": [
"packages/eslint-plugin",
"packages/common",
"packages/forklift-console-plugin"
],
"scripts": {
"clean": "rm -rf ./dist ./coverage && yarn workspace @kubev2v/common run clean && yarn workspace @kubev2v/forklift-console-plugin run clean",
"clean:all": "yarn run clean && rm -rf ./node_modules ./tmp",
"build": "NODE_ENV=production yarn workspace @kubev2v/common run build && NODE_ENV=production yarn workspace @kubev2v/forklift-console-plugin run build",
"start": "concurrently \"NODE_ENV=development yarn workspace @kubev2v/common run start\" \"NODE_ENV=development yarn workspace @kubev2v/forklift-console-plugin run start\"",
"i18n": "yarn workspace @kubev2v/forklift-console-plugin run i18n",
"lint": "yarn workspaces run lint",
"lint:fix": "yarn workspaces run lint:fix",
"test:i18n": "bash ./ci/test-i18n.sh",
"test": "yarn workspace @kubev2v/common run build && yarn workspaces run test",
"test:coverage": "yarn workspace @kubev2v/common run build && yarn workspaces run test:coverage",
"test:updateSnapshot": "yarn workspace @kubev2v/common run build && yarn workspaces run test:updateSnapshot",
"test:e2e": "cypress run --config-file cypress/cypress.config.cjs --browser chrome --headed",
"console": "bash ./ci/start-console.sh",
"console:stop": "bash ./ci/stop-console.sh",
"cluster:up": "bash ./ci/deploy-all.sh",
"cluster:delete": "bash ./ci/clean-cluster.sh",
"e2e:cluster": "bash ./ci/deploy-cluster.sh",
"e2e:build": "bash ./ci/build-and-push-images.sh",
"e2e:deployCrds": "kubectl apply -f ./ci/yaml/crds/forklift",
"e2e:console": "bash ./ci/deploy-console.sh",
"e2e:pre-test": "yarn run e2e:cluster && yarn run e2e:build && yarn run e2e:deployCrds && yarn run e2e:console",
"storybook": "yarn workspace @kubev2v/common run storybook dev -p 6006",
"storybook:build": "yarn workspace @kubev2v/common run storybook build"
},
"devDependencies": {
"@cspell/eslint-plugin": "^6.31.1",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-typescript": "^11.0.0",
"@rollup/plugin-url": "^8.0.2",
"@rollup/pluginutils": "^5.0.2",
"@testing-library/cypress": "^10.0.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/node": "^20.16.6",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"concurrently": "^9.0.1",
"cypress": "^13.14.2",
"eslint": "^8.18.0",
"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",
"eslint-plugin-unused-imports": "^2.0.0",
"i18next-parser": "^3.3.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"prettier": "^2.7.1",
"prettier-stylelint": "^0.4.2",
"rollup": "^4.22.4",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-import-css": "^3.1.0",
"stylelint": "^14.9.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^26.0.0",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"yarn": "^1.22.22"
}
}