-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.24 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
53
54
55
56
57
58
59
60
61
{
"private": true,
"name": "basic-monorepo",
"packageManager": "pnpm@8.11.0",
"scripts": {
"lint": "turbo lint",
"checktype": "turbo checktype",
"test": "turbo test",
"build": "turbo build",
"dev": "turbo dev",
"clean": "turbo clean && rm -rf node_modules",
"ready": "pnpm husky install"
},
"devDependencies": {
"@configs/eslint-config": "workspace:*",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"turbo": "^1.11.0"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@babel/*",
"expo-modules-*",
"typescript"
]
},
"packageExtensions": {},
"overrides": {
"uuid": "^3.4.0"
}
},
"eslintConfig": {
"extends": "@configs/eslint-config",
"ignorePatterns": [
"node_modules",
".next",
"public"
]
},
"prettier": {
"printWidth": 100,
"tabWidth": 2,
"singleQuote": true,
"trailingComma": "es5",
"bracketSameLine": true
},
"lint-staged": {
"*.{ts,tsx,mjs,js,mts}": [
"prettier --write",
"eslint --fix"
],
"*.{ts,tsx,mts}": [
"echo lint && pnpm lint --",
"echo checktype && pnpm checktype"
],
"*.{md,css}": [
"prettier --write"
]
}
}