-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
34 lines (34 loc) · 1.12 KB
/
package.json
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
{
"name": "shift",
"private": true,
"type": "module",
"repository": "https://github.com/shift-editor/shift",
"scripts": {
"dev:tauri": "turbo run dev",
"types:rebuild": "scripts/rebuild_types.sh",
"dev:app": "pnpm tauri dev",
"build:tauri": "turbo run build",
"build:app": "pnpm tauri build",
"cargo:clean": "cargo clean",
"clean:app": "pnpm cargo:clean && rm -rf .turbo && rm -rf node_modules",
"clean": "turbo run clean",
"build": "turbo run --no-daemon build",
"test": "turbo run test",
"tauri": "tauri",
"format": "prettier --write \"apps/**/*.{js,jsx,ts,tsx,css,md,json}\"",
"format:check": "prettier --check \"apps/**/*.{js,jsx,ts,tsx,css,md,json}\"",
"lint": "eslint \"apps/**/*.{ts,tsx}\" --fix",
"lint:check": "eslint \"apps/**/*.{ts,tsx}\"",
"check-deps": "depcheck"
},
"packageManager": "[email protected]",
"devDependencies": {
"@tauri-apps/cli": "^2.3.1",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"eslint": "^8.57.1",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"turbo": "^2.2.3",
"typescript": "^5.2.2"
}
}