-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.94 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.94 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
39
40
41
42
43
44
45
46
47
48
{
"name": "cover-craft",
"version": "1.0.0",
"description": "A full-stack cover image generator application with built-in analytics dashboard. Showcases modern web development, cloud deployment, and best practices. Demonstrates end-to-end integration of responsive frontend, serverless backend, MongoDB data persistence, and cloud infrastructure for production-ready applications.",
"homepage": "https://github.com/victoriacheng15/cover-craft#readme",
"bugs": {
"url": "https://github.com/victoriacheng15/cover-craft/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/victoriacheng15/cover-craft.git"
},
"license": "MIT",
"author": "",
"workspaces": [
"frontend",
"api",
"shared"
],
"scripts": {
"lint": "biome check frontend/ api/ shared/",
"lint:api": "biome check api/",
"lint:frontend": "biome check frontend/",
"lint:shared": "biome check shared/",
"deps:deprecated": "npm ls --all --json --long 2>/dev/null | rg '\"deprecated\"' -n -C 4",
"format": "biome format --write frontend/ api/ shared/",
"format:api": "biome format --write api/",
"format:frontend": "biome format --write frontend/",
"format:shared": "biome format --write shared/",
"test": "npm test --workspaces --if-present",
"test:api": "npm test --workspace=api",
"test:frontend": "npm test --workspace=frontend",
"test:coverage": "npm test --workspaces --if-present -- --coverage",
"build:shared": "npm run build --workspace=@cover-craft/shared",
"build:frontend": "npm run build:shared && npm run build --workspace=frontend",
"dev:frontend": "npm run dev --workspace=frontend",
"start:api": "mkdir -p __azurite_db__ && azurite --silent --location ./__azurite_db__ & npm run build:shared && npm run start --workspace=api"
},
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@cover-craft/shared": "./shared",
"api": "./api",
"azurite": "^3.35.0",
"frontend": "./frontend",
"typescript": "^6.0.3",
"vitest": "^4.1.7"
}
}