-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.84 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": "splainer",
"version": "3.0.0",
"license": "Apache-2.0",
"type": "module",
"app": "app",
"dist": "dist",
"dependencies": {
"@codemirror/commands": "^6.10.3",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/language": "^6.12.3",
"@codemirror/state": "^6.6.0",
"@codemirror/view": "^6.41.0",
"bootstrap": "~3.4.1",
"dompurify": "^3.3.3",
"preact": "^10.29.1",
"splainer-search": "3.0.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@playwright/test": "^1.59.1",
"@stryker-mutator/core": "^9.6.0",
"@stryker-mutator/vitest-runner": "^9.6.0",
"@testing-library/preact": "^3.2.4",
"eslint": "^9.17.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^15.14.0",
"jsdom": "^29.0.2",
"prettier": "^3.4.2",
"vite": "^8.0.7",
"vitest": "^4.1.2"
},
"engines": {
"node": ">=20.12.0"
},
"scripts": {
"preinstall": "npx --yes only-allow yarn",
"postinstall": "node scripts/ensure-splainer-search.js",
"build": "node scripts/build.js",
"dev": "vite",
"dev:vite": "vite",
"test": "vitest run",
"test:watch": "vitest",
"stryker": "stryker run",
"stryker:full": "stryker run --force",
"stryker:dry": "stryker run --dryRunOnly",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:audit": "playwright test --project=audit-prod --project=audit-local --project=audit-local-mobile && node scripts/audit-diff.js",
"test:e2e:audit:diff": "node scripts/audit-diff.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"browserslist": [
"last 1 version",
"> 1%",
"maintained node versions",
"not dead"
]
}