aboutsummaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorDhravya <[email protected]>2024-02-21 16:11:35 -0700
committerDhravya <[email protected]>2024-02-21 16:11:35 -0700
commitcdceb1bc87dc2d5ef42a7f172ea5dc2263c5c526 (patch)
treee0234f7fff63b312f18c945bed37a430d1e68755 /package.json
downloadsupermemory-cdceb1bc87dc2d5ef42a7f172ea5dc2263c5c526.tar.xz
supermemory-cdceb1bc87dc2d5ef42a7f172ea5dc2263c5c526.zip
initialised monorepo with auth and extension communication
Diffstat (limited to 'package.json')
-rw-r--r--package.json38
1 files changed, 38 insertions, 0 deletions
diff --git a/package.json b/package.json
new file mode 100644
index 00000000..b75d07aa
--- /dev/null
+++ b/package.json
@@ -0,0 +1,38 @@
+{
+ "name": "anycontext",
+ "version": "0.1.0",
+ "private": true,
+ "type": "module",
+ "workspaces": [
+ "apps/*",
+ "packages/*"
+ ],
+ "packageManager": "[email protected]",
+ "scripts": {
+ "build": "dotenv -- turbo run build",
+ "dev": "dotenv -- turbo run dev",
+ "lint": "dotenv -- turbo run lint",
+ "start": "dotenv -- turbo run start"
+ },
+ "devDependencies": {
+ "@types/better-sqlite3": "^7.6.6",
+ "@types/eslint": "^8.44.7",
+ "@types/node": "^18.17.0",
+ "@types/react": "^18.2.37",
+ "@types/react-dom": "^18.2.15",
+ "@typescript-eslint/eslint-plugin": "^6.11.0",
+ "@typescript-eslint/parser": "^6.11.0",
+ "autoprefixer": "^10.4.14",
+ "drizzle-kit": "^0.20.14",
+ "eslint": "^8.54.0",
+ "eslint-config-next": "^14.0.4",
+ "postcss": "^8.4.31",
+ "prettier": "^3.1.0",
+ "prettier-plugin-tailwindcss": "^0.5.7",
+ "tailwindcss": "^3.3.5",
+ "typescript": "^5.1.6"
+ },
+ "dependencies": {
+ "dotenv-cli": "^7.3.0"
+ }
+}