summaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorJosh Kingsley <josh@joshkingsley.me>2025-11-24 15:46:22 +0200
committerJosh Kingsley <josh@joshkingsley.me>2025-11-24 15:46:22 +0200
commitd724cc0bf6ff6d351319e6fb00f5184a04e16ac0 (patch)
treecb43253479df5db8f4844e17e68a48ea5a212df4 /package.json
parent7c966e105cd9f65853de1aba0ecce63aa56aca0b (diff)
chore: improve dev tasks
Diffstat (limited to 'package.json')
-rw-r--r--package.json9
1 files changed, 8 insertions, 1 deletions
diff --git a/package.json b/package.json
index f51a394..74c034a 100644
--- a/package.json
+++ b/package.json
@@ -2,11 +2,18 @@
"name": "notive",
"private": true,
"type": "module",
+ "scripts": {
+ "build": "turbo run build",
+ "build:dev": "turbo run build:dev",
+ "clean": "turbo run clean && rm -rf target .turbo",
+ "dev": "turbo run dev",
+ "test": "turbo run test"
+ },
"devDependencies": {
"prettier": "^3.6.2",
"prettier-plugin-css-order": "^2.1.2",
"prettier-plugin-packagejson": "^2.5.19",
- "turbo": "^2.6.0",
+ "turbo": "^2.6.1",
"typescript": "^5.9.3"
},
"packageManager": "pnpm@10.22.0"