-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.54 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
{
"name": "helpi",
"version": "0.0.1",
"description": "",
"homepage": "https://github.com/{{ org }}/helpi#readme",
"bugs": {
"url": "https://github.com/{{ org }}/helpi/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/{{ org }}/helpi.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"
},
"dependencies": {
"@emotion/react": "^11.13.5",
"@emotion/styled": "^11.13.5",
"@mui/icons-material": "^6.1.10",
"@mui/material": "^6.1.10",
"axios": "^1.7.9",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.1"
}
}