-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 895 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 895 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
39
40
41
42
{
"name": "mds",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"test": "turbo run test",
"prepare": "husky install",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"lint-staged": {
"apps/**/*.{js,ts,jsx,tsx}": [
"pnpm run format"
],
"packages/**/*.{js,ts,jsx,tsx}": [
"pnpm run format"
],
"*.json": [
"pnpm run format"
]
},
"devDependencies": {
"autoprefixer": "^10.4.14",
"eslint-config-custom": "workspace:*",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"postcss": "^8.4.27",
"prettier": "latest",
"tailwindcss": "^3.3.3",
"turbo": "^2.3.3"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "pnpm@8.6.10"
}