-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.99 KB
/
package.json
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
51
52
53
54
{
"name": "@headbase-app/headbase",
"version": "0.0.0",
"description": "The customizable database for your brain. Note-taking, task-management, personal knowledge bases and more.",
"private": true,
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"prepare": "husky install",
"install-all": "run-p install:*",
"install:common": "cd packages/common && npm install",
"install:toolkit": "cd packages/toolkit && npm install",
"install:server": "cd packages/server && npm install",
"install:web": "cd packages/web && npm install",
"ci-all": "run-p ci:*",
"ci:common": "cd packages/common && npm ci",
"ci:toolkit": "cd packages/toolkit && npm ci",
"ci:server": "cd packages/server && npm ci",
"ci:web": "cd packages/web && npm ci",
"build-all": "run-s build:common build:server build:web",
"build:common": "cd packages/common && npm run build",
"build:server": "cd packages/server && npm run build",
"build:web": "cd packages/web && npm run build",
"test-all": "run-s test:*",
"test:common": "cd packages/common && npm run test",
"test:toolkit": "cd packages/toolkit && npm run test",
"test:server": "cd packages/server && npm run test",
"test:web": "cd packages/web && npm run test",
"prepare-server-deploy": "run-p ci:common ci:server && npm run build:server",
"start-server-deploy": "cd packages/server && npm run start:prod",
"prepare-web-deploy": "run-p ci:common ci:toolkit ci:web && npm run build:web"
},
"repository": {
"type": "git",
"url": "git+https://github.com/headbase-app/headbase.git"
},
"author": "ben-ryder",
"license": "AGPL-3.0-only",
"bugs": {
"url": "https://github.com/headbase-app/headbase/issues"
},
"homepage": "https://github.com/headbase-app/headbase#readme",
"devDependencies": {
"@commitlint/cli": "^18.4.2",
"@commitlint/config-conventional": "^18.4.2",
"husky": "^8.0.3",
"npm-run-all2": "^7.0.1"
},
"engines": {
"node": "20"
}
}