-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.7 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.7 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
{
"bugs": {
"url": "https://github.com/stryker-mutator/stryker-dashboard/issues"
},
"type": "module",
"contributors": [
"Maarten Mulders <mthmulders@users.noreply.github.com>",
"Nico Jansen <jansennico@gmail.com>"
],
"workspaces": [
"packages/*"
],
"devDependencies": {
"@eslint/js": "10.0.1",
"@stryker-mutator/core": "9.6.0",
"@stryker-mutator/mocha-runner": "9.6.0",
"@stryker-mutator/vitest-runner": "9.6.0",
"@tsconfig/node-lts": "24.0.0",
"@tsconfig/recommended": "1.0.13",
"@tsconfig/strictest": "2.0.8",
"@tsconfig/vite-react": "7.0.2",
"@types/chai": "5.2.3",
"@types/chai-as-promised": "8.0.2",
"@types/mocha": "10.0.10",
"@types/node": "24.10.15",
"@types/sinon": "21.0.0",
"azurite": "3.35.0",
"c8": "11.0.0",
"chai": "6.2.2",
"chai-as-promised": "8.0.2",
"concurrently": "9.2.1",
"eslint": "10.0.2",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-import-x": "4.16.1",
"eslint-plugin-lit": "2.2.1",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-storybook": "10.2.13",
"eslint-plugin-wc": "3.1.0",
"globals": "17.3.0",
"lerna": "9.0.4",
"mocha": "11.7.5",
"nx": "22.5.3",
"prettier": "3.8.1",
"prettier-plugin-tailwindcss": "0.7.2",
"rimraf": "6.1.3",
"sinon": "21.0.1",
"typescript": "5.9.3",
"typescript-eslint": "8.56.1",
"vite-plugin-dts": "4.5.4"
},
"license": "Apache-2.0",
"name": "stryker-dashboard",
"repository": {
"type": "git",
"url": "git+https://github.com/stryker-mutator/stryker-dashboard.git"
},
"scripts": {
"all": "pnpm clean && pnpm build && pnpm lint && pnpm test",
"clean": "rimraf --glob \"packages/*/{.nyc_output,reports,coverage,dist,*.tsbuildinfo}\"",
"lint": "concurrently -c auto \"pnpm:lint:*(!fix)\"",
"lint:prettier": "prettier --check .",
"lint:eslint": "eslint .",
"lint:fix": "eslint . --fix && prettier --write .",
"build": "tsc -b && nx run-many -t build",
"start:azurite": "rimraf .azurite && mkdir -p .azurite && azurite -l .azurite",
"test": "nx run-many -t test --exclude e2e",
"backend": "pnpm --filter @stryker-mutator/dashboard-backend",
"badge-api": "pnpm --filter @stryker-mutator/dashboard-badge-api",
"common": "pnpm --filter @stryker-mutator/dashboard-common",
"contract": "pnpm --filter @stryker-mutator/dashboard-contract",
"data-access": "pnpm --filter @stryker-mutator/dashboard-data-access",
"e2e": "pnpm --filter e2e",
"elements": "pnpm --filter @stryker-mutator/stryker-elements",
"frontend": "pnpm --filter @stryker-mutator/dashboard-frontend"
},
"version": "0.0.1",
"packageManager": "pnpm@10.30.3"
}