-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.23 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
{
"name": "za-root",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"typecheck": "turbo typecheck",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"format:write": "turbo run format:write",
"format:check": "turbo run format:check",
"postinstall": "manypkg check",
"publish-packages": "npm run build && changeset version && changeset publish",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf .next && rm -rf packages/*/dist",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"test:playwright": "turbo run test:playwright",
"test:jest": "turbo run test:jest"
},
"engines": {
"node": ">=18"
},
"packageManager": "npm@10.2.3",
"workspaces": [
"examples/*",
"tests/*",
"packages/*"
],
"dependencies": {
"@changesets/cli": "^2.27.1",
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
"@manypkg/cli": "^0.21.4",
"@repo/eslint-config": "*",
"@repo/typescript-config": "*",
"@tanstack/react-query": "^5.36.2",
"@testing-library/react": "^16.0.0",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"turbo": "latest",
"zod": "^3.23.5"
}
}