-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 875 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 875 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
{
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"check-all": "turbo run check-all",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,md}\"",
"prepare": "husky install"
},
"devDependencies": {
"@turbo/gen": "^1.9.7",
"eslint": "^7.32.0",
"eslint-config-custom": "*",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.4.1",
"turbo": "latest"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mdx}": [
"prettier --check"
]
},
"name": "makers",
"packageManager": "yarn@3.6.1",
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"@sopt-makers/icons": "^1.0.4",
"@sopt-makers/ui": "2.3.1",
"dayjs": "^1.11.9"
}
}