-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 781 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 781 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
{
"name": "feedbase",
"private": true,
"scripts": {
"build": "dotenv -- turbo run build",
"dev": "dotenv -- turbo run dev",
"lint": "turbo run lint --",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx}\"",
"ts": "turbo run ts",
"prepare": "husky install"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.1.0",
"@feedbase/tailwind-config": "workspace:*",
"dotenv-cli": "^7.3.0",
"eslint": "^8.48.0",
"eslint-config-custom": "workspace:*",
"husky": "^8.0.0",
"lint-staged": "^13.3.0",
"prettier": "3.0.3",
"prettier-plugin-tailwindcss": "^0.4.1",
"turbo": "^1.10.14"
},
"packageManager": "pnpm@8.6.2",
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write"
]
}
}