-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 835 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 835 Bytes
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
{
"name": "my-amazing-todo",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"deploy:nest": "turbo run deploy --filter=nest",
"deploy:vite": "turbo run deploy --filter=vite --no-cache",
"build": "turbo run build --no-cache",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,vue}\"",
"dev:vite": "yarn workspace vite dev",
"dev:nest": "yarn workspace nest start:dev",
"start:vite": "yarn workspace vite preview",
"start:nest": "yarn workspace nest start",
"miscs": "yarn workspace miscs build"
},
"devDependencies": {
"prettier": "^2.6.0",
"turbo": "latest"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=14.0.0"
},
"packageManager": "yarn@1.22.15"
}