-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 866 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 866 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
32
33
34
35
36
37
38
{
"name": "quickstart",
"description": "Portabl Connect and Sync quickstarts.",
"author": "dev@getportabl.com",
"license": "MIT",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean",
"dev": "turbo run dev --parallel --scope=portabl-next",
"format": "prettier --write .",
"lint": "turbo run lint",
"test": "turbo run test",
"prepare": "husky install"
},
"devDependencies": {
"eslint-config-custom": "*",
"husky": ">=6",
"lint-staged": ">=10",
"prettier": "latest",
"turbo": "latest"
},
"packageManager": "yarn@1.22.15",
"engines": {
"node": ">=14.0.0",
"npm": ">=7.0.0"
},
"lint-staged": {
"*.{js,json,yml,yaml,css,scss,ts,tsx,md}": [
"prettier --write"
]
}
}