-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 983 Bytes
/
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
{
"name": "turborepo-template",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build --cache-dir=\"./.turbo_cache\"",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"test": "turbo run test",
"deploy": "turbo run deploy",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"clean": "turbo run clean && rm -rf node_modules",
"lint:staged": "lint-staged",
"check:prettier:staged": "pretty-quick --staged",
"check:commit:msg:staged": "commitlint --edit \"$1\""
},
"devDependencies": {
"@aiherrera/config": "workspace:*",
"@aiherrera/eslint-config-custom": "workspace:*",
"@commitlint/cli": "^17.4.2",
"@types/node": "^17.0.12",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"pretty-quick": "^3.1.3",
"turbo": "latest"
},
"engines": {
"node": ">=16.0.0"
},
"packageManager": "[email protected]"
}