forked from arpitkhandelwal12/ZerithDB
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.34 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
41
42
43
44
45
46
47
48
49
50
{
"name": "zerithdb",
"version": "0.1.0",
"private": true,
"description": "Local-first, peer-to-peer backend platform. The browser is the server.",
"author": "ZerithDB Contributors",
"license": "Apache-2.0",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo run test",
"test:e2e": "turbo run test:e2e",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\"",
"clean": "turbo run clean && rimraf node_modules",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build --filter=!./apps/* && changeset publish",
"prepare": "husky"
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@types/node": "^22.0.0",
"husky": "^9.1.4",
"lint-staged": "^15.2.7",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"turbo": "^2.3.0",
"typescript": "^5.5.4"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yaml,yml}": [
"prettier --write"
]
},
"packageManager": "pnpm@10.24.0",
"dependencies": {
"@noble/hashes": "^2.2.0"
}
}