-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
80 lines (80 loc) · 2.65 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
{
"name": "@testkube/root",
"version": "0.0.0",
"author": "Kubeshop",
"description": "Simple dashboard for TestKube",
"contributors": [
"ole@kubeshop.io"
],
"publishConfig": {
"access": "restricted"
},
"repository": {
"type": "git",
"url": "git@github.com:kubeshop/testkube-dashboard.git"
},
"workspaces": [
"packages/*"
],
"engines": {
"node": "^18.13.0 || ^20.0.0",
"npm": ">=9.0.0"
},
"private": true,
"devDependencies": {
"@commitlint/cli": "15.0.0",
"@commitlint/config-conventional": "15.0.0",
"@craco/craco": "7.1.0",
"@sentry/webpack-plugin": "^2.6.2",
"@shopify/jest-dom-mocks": "^4.1.2",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.4.3",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/jest": "27.0.2",
"@types/node": "20.8.3",
"@typescript-eslint/eslint-plugin": "5.55.0",
"@typescript-eslint/parser": "5.55.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-unused-imports": "2.0.0",
"husky": "8.0.3",
"prettier": "2.8.8",
"serve": "^14.2.1",
"stylelint": "15.10.1",
"stylelint-config-recommended": "11.0.0",
"stylelint-config-standard": "31.0.0",
"stylelint-config-styled-components": "0.1.1",
"ts-jest": "^29.1.1",
"typescript": "5.0.2"
},
"scripts": {
"start": "npm run -w @testkube/web start",
"start:prod": "npm run -w @testkube/web build && serve -p 3000 -s -n packages/web/build",
"build": "npm run --workspaces --if-present build",
"test": "npx jest",
"test:coverage": "npx jest --collect-coverage --coverage-reporters lcov",
"test:watch": "npx jest --watch --detectOpenHandles",
"test:update": "npm run -w @testkube/web test:update",
"e2e": "npm run -w @testkube/e2e-tests e2e",
"e2e:watch": "npm run -w @testkube/e2e-tests start",
"e2e:install": "npx playwright install",
"lint": "npm run --workspaces --if-present lint",
"stylelint": "npm run --workspaces --if-present stylelint",
"format:check": "npm run --workspaces --if-present format:check",
"format:all": "npm run --workspaces --if-present format:all",
"ts-check": "npm run --workspaces --if-present ts-check",
"precommit": "npm run format:all && npm run lint",
"prepare": "husky install || exit 0"
},
"wallaby": {
"testFramework": {
"configFile": "./jest.config.js"
}
}
}