summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore4
-rw-r--r--package.json8
-rw-r--r--pnpm-lock.yaml80
-rw-r--r--pnpm-workspace.yaml2
-rw-r--r--turbo.json9
-rw-r--r--web/package.json4
6 files changed, 107 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..e3b82f3
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,4 @@
+/node_modules/
+
+/.turbo/
+**/.turbo/ \ No newline at end of file
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..41f024d
--- /dev/null
+++ b/package.json
@@ -0,0 +1,8 @@
+{
+ "name": "notive",
+ "private": true,
+ "packageManager": "pnpm@10.18.0",
+ "devDependencies": {
+ "turbo": "^2.5.8"
+ }
+}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
new file mode 100644
index 0000000..00fa19e
--- /dev/null
+++ b/pnpm-lock.yaml
@@ -0,0 +1,80 @@
+lockfileVersion: '9.0'
+
+settings:
+ autoInstallPeers: true
+ excludeLinksFromLockfile: false
+
+importers:
+
+ .:
+ devDependencies:
+ turbo:
+ specifier: ^2.5.8
+ version: 2.5.8
+
+ web: {}
+
+packages:
+
+ turbo-darwin-64@2.5.8:
+ resolution: {integrity: sha512-Dh5bCACiHO8rUXZLpKw+m3FiHtAp2CkanSyJre+SInEvEr5kIxjGvCK/8MFX8SFRjQuhjtvpIvYYZJB4AGCxNQ==}
+ cpu: [x64]
+ os: [darwin]
+
+ turbo-darwin-arm64@2.5.8:
+ resolution: {integrity: sha512-f1H/tQC9px7+hmXn6Kx/w8Jd/FneIUnvLlcI/7RGHunxfOkKJKvsoiNzySkoHQ8uq1pJnhJ0xNGTlYM48ZaJOQ==}
+ cpu: [arm64]
+ os: [darwin]
+
+ turbo-linux-64@2.5.8:
+ resolution: {integrity: sha512-hMyvc7w7yadBlZBGl/bnR6O+dJTx3XkTeyTTH4zEjERO6ChEs0SrN8jTFj1lueNXKIHh1SnALmy6VctKMGnWfw==}
+ cpu: [x64]
+ os: [linux]
+
+ turbo-linux-arm64@2.5.8:
+ resolution: {integrity: sha512-LQELGa7bAqV2f+3rTMRPnj5G/OHAe2U+0N9BwsZvfMvHSUbsQ3bBMWdSQaYNicok7wOZcHjz2TkESn1hYK6xIQ==}
+ cpu: [arm64]
+ os: [linux]
+
+ turbo-windows-64@2.5.8:
+ resolution: {integrity: sha512-3YdcaW34TrN1AWwqgYL9gUqmZsMT4T7g8Y5Azz+uwwEJW+4sgcJkIi9pYFyU4ZBSjBvkfuPZkGgfStir5BBDJQ==}
+ cpu: [x64]
+ os: [win32]
+
+ turbo-windows-arm64@2.5.8:
+ resolution: {integrity: sha512-eFC5XzLmgXJfnAK3UMTmVECCwuBcORrWdewoiXBnUm934DY6QN8YowC/srhNnROMpaKaqNeRpoB5FxCww3eteQ==}
+ cpu: [arm64]
+ os: [win32]
+
+ turbo@2.5.8:
+ resolution: {integrity: sha512-5c9Fdsr9qfpT3hA0EyYSFRZj1dVVsb6KIWubA9JBYZ/9ZEAijgUEae0BBR/Xl/wekt4w65/lYLTFaP3JmwSO8w==}
+ hasBin: true
+
+snapshots:
+
+ turbo-darwin-64@2.5.8:
+ optional: true
+
+ turbo-darwin-arm64@2.5.8:
+ optional: true
+
+ turbo-linux-64@2.5.8:
+ optional: true
+
+ turbo-linux-arm64@2.5.8:
+ optional: true
+
+ turbo-windows-64@2.5.8:
+ optional: true
+
+ turbo-windows-arm64@2.5.8:
+ optional: true
+
+ turbo@2.5.8:
+ optionalDependencies:
+ turbo-darwin-64: 2.5.8
+ turbo-darwin-arm64: 2.5.8
+ turbo-linux-64: 2.5.8
+ turbo-linux-arm64: 2.5.8
+ turbo-windows-64: 2.5.8
+ turbo-windows-arm64: 2.5.8
diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml
new file mode 100644
index 0000000..02c9f93
--- /dev/null
+++ b/pnpm-workspace.yaml
@@ -0,0 +1,2 @@
+packages:
+ - web
diff --git a/turbo.json b/turbo.json
new file mode 100644
index 0000000..b2299dd
--- /dev/null
+++ b/turbo.json
@@ -0,0 +1,9 @@
+{
+ "$schema": "https://turborepo.com/schema.json",
+ "tasks": {
+ "dev": {
+ "cache": false,
+ "persistent": true
+ }
+ }
+}
diff --git a/web/package.json b/web/package.json
new file mode 100644
index 0000000..edc33c4
--- /dev/null
+++ b/web/package.json
@@ -0,0 +1,4 @@
+{
+ "name": "@notive/web",
+ "private": true
+}