-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.55 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.55 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
{
"name": "@ts-git/monorepo",
"version": "0.0.0",
"private": true,
"type": "module",
"engines": {
"node": ">=22.12.0",
"pnpm": ">=9.0.0"
},
"packageManager": "pnpm@9.12.0",
"scripts": {
"build": "turbo build",
"test": "turbo test --filter=@keydown-app/ts-git",
"test:unit": "turbo test --filter=@keydown-app/ts-git -- --exclude \"**/interoperability/**\"",
"test:interoperability": "turbo test --filter=@keydown-app/ts-git -- src/tests/interoperability",
"dev": "turbo dev --filter=@keydown-app/ts-git --filter=@ts-git/example-with-memory-fs",
"docs": "turbo dev --filter=@ts-git/docs",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,css,md}\"",
"lint": "turbo lint",
"lint:eslint": "eslint . --ext .ts,.tsx",
"dev:tauri": "turbo dev --filter=@keydown-app/ts-git --filter=@ts-git/example-with-tauri-fs",
"dev:zen": "turbo dev --filter=@keydown-app/ts-git --filter=@ts-git/example-with-zen-fs",
"preview:tauri": "turbo preview --filter=@ts-git/example-with-tauri-fs",
"preview:zen": "turbo preview --filter=@ts-git/example-with-zen-fs",
"typecheck": "turbo typecheck",
"clean": "turbo clean && rm -rf node_modules"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^3.1.0",
"turbo": "^2.8.14",
"typescript": "^5.3.0"
}
}