forked from giuem/monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.04 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
{
"name": "giuem.com",
"version": "1.0.0",
"private": true,
"description": "giuem.com",
"author": "Giuem",
"engines": {
"node": "14.x",
"pnpm": "^6.27.1"
},
"scripts": {
"prepare": "husky install",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"bootstrap": "npm i -g pnpm@^6 && pnpm install"
},
"devDependencies": {
"@infra/eslint-config": "workspace:*",
"eslint": "8.7.0",
"husky": "7.0.4",
"lint-staged": "12.2.2",
"prettier": "2.5.1",
"turbo": "1.0.28",
"typescript": "4.5.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"*": [
"prettier --ignore-unknown --write"
]
},
"turbo": {
"baseBranch": "origin/main",
"npmClient": "pnpm",
"pipeline": {
"build": {
"dependsOn": [
"^build"
],
"outputs": [
"dist/**",
"build/**",
"public/**"
]
},
"dev": {
"cache": false
}
}
}
}