-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 914 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 914 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
39
40
41
42
43
{
"name": "turborepo-basic-shared",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"lint-staged": {
"**/*.(js|ts|tsx)": [
"eslint --fix"
],
"**/*.(js|json|ts|tsx)": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"devDependencies": {
"prettier": "^2.5.1",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"eslint-plugin-prettier": "^3.1.4",
"babel-eslint": "^10.1.0",
"eslint-config-prettier": "^6.12.0",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"turbo": "latest"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=14.0.0"
},
"packageManager": "yarn@1.22.17"
}