-
-
Notifications
You must be signed in to change notification settings - Fork 105
/
Copy pathpackage.json
52 lines (52 loc) · 1.44 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
50
51
52
{
"name": "trampoemcasa",
"version": "1.0.0",
"description": "Conexão definitiva entre desenvolvedores brasileiros e oportunidades de trabalho remoto.",
"private": true,
"license": "MIT",
"scripts": {
"build:auto-email-sender": "turbo run build --filter=./apps/auto-email-sender/*",
"build:dev": "turbo build --concurrency 20 --filter=web",
"dev2": "turbo dev --concurrency 20",
"start:dev": "turbo start --concurrency 20 --filter=web",
"lint-format": "yarn format && eslint --fix",
"lint": "turbo run lint --concurrency 20",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"prepare": "husky install",
"setup": "node setup.mjs",
"test": "turbo run test --concurrency 20",
"test:silent": "turbo run test:silent --concurrency 20"
},
"devDependencies": {
"@turbo/gen": "^1.9.7",
"eslint": "^8.44.0",
"eslint-config-custom": "*",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "^2.5.1",
"prettier-plugin-tailwindcss": "^0.4.1"
},
"packageManager": "[email protected]",
"workspaces": [
"apps/web",
"apps/auto-email-sender",
"apps/workers/*",
"packages/*"
],
"lint-staged": {
"apps/**/*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"packages/shared/**/*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{json,md}": [
"prettier --write"
]
},
"dependencies": {
"zod": "^3.23.8"
}
}