-
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) · 739 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 739 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": "ryuk",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"build:api": "turbo run --filter=api build",
"build:web": "turbo run --filter=web build",
"clean": "turbo run clean",
"dev": "turbo run dev",
"dev:api": "turbo run --filter=api dev",
"dev:web": "turbo run --filter=web dev",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "turbo run lint",
"test": "turbo run test"
},
"devDependencies": {
"@ryuk/eslint-config": "*",
"prettier": "^3.1.1",
"turbo": "latest"
},
"packageManager": "yarn@4.1.1",
"engines": {
"node": ">=14.0.0",
"npm": ">=7.0.0"
}
}