forked from WildCodeSchool-2024-09/toulouse-p2-weatherly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.3 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
{
"name": "weatherly",
"version": "0.0.1",
"description": "",
"homepage": "https://github.com/{{ org }}/weatherly#readme",
"bugs": {
"url": "https://github.com/{{ org }}/weatherly/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/{{ org }}/weatherly.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",
"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": "husky || true",
"start": "npm run start --workspace=server",
"test": "npm run test --workspaces --if-present"
},
"keywords": [],
"author": "{{ org }}",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "1.9.2",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"concurrently": "^9.0.1",
"husky": "^9.1.6",
"validate-branch-name": "^1.3.1"
}
}