-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.01 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.01 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
{
"name": "blog-monorepo",
"version": "0.0.1",
"description": "Monorepo for a blog app",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/LearnShare/blog-test"
},
"keywords": [
"monorepo",
"blog",
"express",
"prisma",
"next.js"
],
"author": "LearnShare",
"license": "MIT",
"bugs": {
"url": "https://github.com/LearnShare/blog-test/issues"
},
"homepage": "https://github.com/LearnShare/blog-test",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo run test",
"lint": "turbo run lint",
"start": "turbo run start",
"generate": "turbo run generate",
"env": "node ./scripts/set-env.js",
"docker:start": "docker compose up postgres redis -d"
},
"dependencies": {
"@packages/database": "workspace:*",
"@packages/lib": "workspace:*"
},
"devDependencies": {
"turbo": "^2.4.2"
},
"workspaces": [
"apps/*",
"packages/*"
],
"packageManager": "pnpm@9.13.2"
}