-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.44 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.44 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
{
"name": "plottr",
"private": true,
"sideEffects": [
"tools/_core/stats/*.ts",
"tools/_core/stats/index.ts",
"tools/_core/*.ts",
"tools/_core/*.tsx",
"tools/_core/shared.ts",
"tools/_core/theme.ts"
],
"license": "MIT",
"scripts": {
"prebuild": "rm -rf tools/_app/chunks && node scripts/write-version.js && node scripts/build-shared.js && node scripts/vendor-sri.js",
"build": "esbuild tools/_app/index.tsx --bundle --splitting --format=esm --outdir=tools/_app --chunk-names=chunks/[name]-[hash] --jsx=transform --minify-syntax --minify-whitespace --sourcemap",
"build:shared": "node scripts/build-shared.js",
"prewatch": "node scripts/write-version.js",
"watch": "node scripts/watch.js",
"pretest": "node scripts/build-shared.js",
"test": "vitest run",
"test:watch": "node scripts/build-shared.js && vitest",
"test:coverage": "vitest run --coverage",
"mutation": "stryker run",
"benchmark": "Rscript benchmark/run-r.R && node benchmark/run.js && node benchmark/run-r-export.js && node benchmark/run-scipy.js",
"benchmark:scipy": "node benchmark/run-scipy.js",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:sri": "node scripts/vendor-sri.js --check",
"lint:boundaries": "depcruise tools --config .dependency-cruiser.cjs",
"audit:contrast": "node scripts/audit-palette-contrast.js",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"e2e:install": "playwright install --with-deps chromium",
"e2e": "playwright test",
"e2e:headed": "playwright test --headed",
"e2e:ui": "playwright test --ui",
"prepare": "node scripts/hooks/install.js"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@playwright/test": "1.59.1",
"@stryker-mutator/core": "^9.6.1",
"@stryker-mutator/vitest-runner": "^9.6.1",
"@types/react": "^18.3.28",
"@types/react-dom": "^18.3.7",
"@typescript-eslint/eslint-plugin": "^8.58.1",
"@typescript-eslint/parser": "^8.58.1",
"dependency-cruiser": "^17.4.0",
"esbuild": "^0.28.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"fast-check": "^4.7.0",
"globals": "^17.4.0",
"happy-dom": "^20.9.0",
"prettier": "^3.8.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^6.0.2",
"vitest": "^4.1.6"
}
}