-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 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
39
40
41
42
43
44
45
46
47
48
49
{
"name": "mern-movie",
"version": "1.0.0",
"description": "A MERN stack movie website/application",
"author": "Kevin Silvester",
"repository": {
"type": "git",
"url": "https://github.com/KevinSilvester/mern-movie.git"
},
"homepage": "https://github.com/KevinSilvester/mern-movie.git",
"license": "MIT",
"workspaces": [
"frontend",
"backend",
"packages/*"
],
"engines": {
"node": ">=16.4.0",
"pnpm": ">=8"
},
"packageManager": "[email protected]",
"keywords": [
"crud",
"express",
"react",
"tailwindcss",
"typescript",
"vite",
"monorepo",
"turborepo"
],
"scripts": {
"build": "turbo run build",
"build:frontend": "turbo run build --filter=\"./frontend\"",
"build:backend": "turbo run build --filter=\"./backend\"",
"dev": "turbo run dev --parallel",
"lint:check": "turbo run lint:check",
"lint:fix": "turbo run lint:fix",
"format:check": "turbo run format:check",
"format:fix": "turbo run format:fix",
"start": "turbo run start",
"start:frontend": "turbo run start --filter=\"./frontend\"",
"start:backend": "turbo run start --filter=\"./backend\""
},
"devDependencies": {
"prettier": "^3.0.0",
"turbo": "^1.10.9"
}
}