-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
63 lines (63 loc) · 1.96 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
{
"bugs": {
"url": "https://github.com/stryker-mutator/stryker-dashboard/issues"
},
"type": "module",
"contributors": [
"Maarten Mulders <[email protected]>",
"Nico Jansen <[email protected]>"
],
"workspaces": [
"packages/*"
],
"devDependencies": {
"@actions/core": "1.11.1",
"@eslint/js": "9.17.0",
"@stryker-mutator/core": "8.7.1",
"@stryker-mutator/mocha-runner": "8.7.1",
"@stryker-mutator/vitest-runner": "8.7.1",
"@types/chai": "5.0.1",
"@types/chai-as-promised": "8.0.1",
"@types/mocha": "10.0.10",
"@types/node": "22.10.5",
"@types/sinon": "17.0.3",
"azurite": "3.33.0",
"c8": "10.1.3",
"chai": "5.1.2",
"chai-as-promised": "8.0.1",
"concurrently": "9.1.2",
"eslint-import-resolver-typescript": "3.7.0",
"eslint-plugin-import-x": "4.6.1",
"eslint-plugin-lit": "1.15.0",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-wc": "2.2.0",
"lerna": "8.1.9",
"mocha": "11.0.1",
"prettier": "3.4.2",
"prettier-plugin-tailwindcss": "0.6.9",
"rimraf": "6.0.1",
"sinon": "19.0.2",
"typescript": "5.7.3",
"typescript-eslint": "8.19.0",
"vite-plugin-dts": "4.5.0"
},
"license": "Apache-2.0",
"name": "stryker-dashboard",
"repository": {
"type": "git",
"url": "https://github.com/stryker-mutator/stryker-dashboard"
},
"scripts": {
"all": "npm run clean && npm run build && npm run lint && npm run test",
"clean": "rimraf --glob \"packages/*/{.nyc_output,reports,coverage,dist}\"",
"lint": "concurrently -c auto \"npm: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"
},
"version": "0.0.1",
"packageManager": "[email protected]"
}