-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1006 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 1006 Bytes
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
{
"name": "DaemonDoc",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"prepare": "husky",
"install:all": "pnpm install",
"dev:client": "pnpm --filter client dev",
"dev:server": "pnpm --filter server dev",
"dev:seo": "pnpm --filter seo-client dev",
"dev:convex": "pnpm --filter convex-server exec convex dev",
"build:client": "pnpm --filter client build",
"build:seo": "pnpm --filter seo-client build",
"start:server": "pnpm --filter server start",
"test": "echo \"Error: no test specified\" && exit 1",
"commitlint": "commitlint --edit"
},
"keywords": [],
"author": "",
"license": "ISC",
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@10.20.0",
"devDependencies": {
"@commitlint/cli": "^21.0.1",
"@commitlint/config-conventional": "^21.0.1",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2"
}
}