-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.42 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.42 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
{
"name": "my-project",
"version": "0.0.1",
"description": "",
"homepage": "https://github.com/checkpoint-4/my-project#readme",
"bugs": {
"url": "https://github.com/checkpoint-4/my-project/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/checkpoint-4/my-project.git"
},
"workspaces": ["client", "server"],
"scripts": {
"build": "npm run build --workspaces --if-present",
"check": "biome check --error-on-warnings --no-errors-on-unmatched --staged . && npm run check-types --workspaces --if-present",
"check:fix": "biome check --write --error-on-warnings --no-errors-on-unmatched --staged .",
"clean": "node ./bin/clean",
"db:migrate": "npm run db:migrate --workspace=server",
"db:seed": "npm run db:seed --workspace=server",
"dev": "concurrently -c green,yellow -t \"HH:mm:ss\" -p \"{name} {time}\" \"npm:dev:*\"",
"dev:client": "npm run dev --workspace=client",
"dev:server": "npm run dev --workspace=server",
"prepare": "git config core.hooksPath .git-hooks || true",
"start": "npm run start --workspace=server",
"test": "npm run test --workspaces --if-present"
},
"keywords": [],
"author": "checkpoint-4",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"concurrently": "^9.1.2",
"validate-branch-name": "^1.3.2"
}
}