-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.08 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
{
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"lint:code": "eslint --ext .js,.jsx,.ts,.tsx",
"lint:code-fix": "eslint --fix --ext .js,.jsx,.ts,.tsx",
"prettier:code-fix": "prettier --write \"**/*.{ts,tsx,md}\"",
"prepare": "husky install"
},
"devDependencies": {
"@stylelint/postcss-css-in-js": "^0.38.0",
"eslint": "^7.32.0",
"eslint-config-custom": "*",
"husky": "^8.0.0",
"lint-staged": "^13.2.1",
"postcss": "^8.4.21",
"postcss-syntax": "^0.36.2",
"prettier": "^2.5.1",
"stylelint": "^15.5.0",
"stylelint-config-custom": "*",
"turbo": "latest"
},
"name": "branding-web",
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*"
],
"engines": {
"node": "^20.x",
"npm": "please-use-yarn",
"yarn": "^1.22.x"
},
"lint-staged": {
"*.json": [
"yarn prettier:code-fix"
],
".*rc": [
"yarn prettier:code-fix"
],
"*.{js,jsx,ts,tsx}": [
"yarn lint:code-fix --cache"
]
}
}