-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 2.01 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
{
"name": "scopa",
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently -k -n web,partykit -c blue,green \"npm run dev:vite\" \"npm run dev:partykit\"",
"dev:partykit": "partykit dev",
"dev:vite": "vite",
"deploy": "partykit deploy",
"build": "tsc -b && vite build",
"lint": "biome check .",
"format": "biome check --write --unsafe .",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:browser": "vitest run --config vitest.browser.config.ts",
"test:mutation": "stryker run",
"simulate": "node --experimental-strip-types scripts/simulate-matches.ts",
"benchmark": "node --experimental-strip-types scripts/benchmark-matrix.ts"
},
"dependencies": {
"@emotion/styled": "^11.14.1",
"@pacote/array": "^0.9.1",
"@pacote/pipe": "^0.2.4",
"@pacote/result": "^4.0.4",
"@pacote/shuffle": "^2.0.4",
"framer-motion": "12.38",
"i18next": "^25.8.18",
"i18next-browser-languagedetector": "^8.2.1",
"i18next-icu": "^2.4.3",
"partysocket": "^1.3.0",
"react": "19.2",
"react-dom": "19.2",
"react-i18next": "^16.5.8"
},
"devDependencies": {
"@biomejs/biome": "^2.4.7",
"@stryker-mutator/core": "^9.6.0",
"@stryker-mutator/typescript-checker": "^9.6.0",
"@stryker-mutator/vitest-runner": "^9.6.0",
"@testing-library/jest-dom": "6.9",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.5",
"@types/node": "^25.6.0",
"@types/react": "19.2",
"@types/react-dom": "19.2",
"@vitejs/plugin-react": "^5.2.0",
"@vitest/browser": "^4.1.11",
"@vitest/browser-playwright": "^4.1.11",
"@vitest/coverage-v8": "^4.1.3",
"@vitest/ui": "^4.1.3",
"baseline-browser-mapping": "^2.10.8",
"concurrently": "^9.2.1",
"fast-check": "^4.6.0",
"jsdom": "^29.0.0",
"partykit": "^0.0.115",
"playwright": "^1.62.1",
"typescript": "^5.9.3",
"vite": "^8.0.16",
"vite-plugin-pwa": "^1.3.0",
"vitest": "^4.1.3"
}
}