-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.14 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.14 KB
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
{
"private": true,
"scripts": {
"prepare": "husky install",
"setup": "yarn && yarn dev",
"build": "turbo run build",
"dev": "turbo run dev --filter=web --filter=playground",
"dev-story": "turbo run dev --filter=ui",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint-stage": "yarn lint && yarn format"
},
"devDependencies": {
"@turbo/gen": "^1.9.7",
"eslint": "^7.32.0",
"eslint-config-custom": "*",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^2.5.1",
"turbo": "^1.10.15"
},
"name": "fe-skeleton",
"packageManager": "yarn@1.22.19",
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"autoprefixer": "^10.4.15",
"postcss": "^8.4.28",
"tailwindcss": "^3.3.3"
},
"lint-staged": {
"apps/**/*.{js,ts,jsx,tsx}": [
"eslint --fix"
],
"packages/**/*.{js,ts,jsx,tsx}": [
"eslint --fix"
],
"*.json": [
"prettier --write"
]
}
}