-
Notifications
You must be signed in to change notification settings - Fork 275
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.1 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.1 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
{
"name": "shuffle-monorepo",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"type": "module",
"scripts": {
"build": "turbo run build",
"dev": "turbo run watch --parallel",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"test:coverage": "turbo run test -- --coverage",
"test:browser": "turbo run test --filter=shufflejs -- --watch --no-browser.headless",
"type-check": "turbo run type-check",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"devDependencies": {
"@docusaurus/module-type-aliases": "^3.9.2",
"@docusaurus/tsconfig": "^3.9.2",
"@docusaurus/types": "^3.9.2",
"@vitest/browser-playwright": "^4.1.0",
"@vitest/coverage-v8": "^4.1.0",
"oxlint": "^1.55.0",
"oxlint-tsgolint": "^0.17.0",
"playwright": "^1.58.2",
"prettier": "^3.8.1",
"tsdown": "^0.21.3",
"turbo": "^2.8.17",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
},
"engines": {
"npm": ">=10.9.0",
"node": ">=24.12.0"
},
"packageManager": "[email protected]"
}