-
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) · 1022 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1022 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
{
"name": "reelo",
"version": "0.0.1",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "prettier --write --log-level warn \"**/*.{ts,tsx,md}\"",
"format:check": "prettier --check --log-level warn \"**/*.{ts,tsx,md}\"",
"prepare": "husky",
"db:start": "docker compose up -d",
"db:stop": "docker compose down"
},
"lint-staged": {
"*.{ts,tsx,md}": "prettier --write --log-level warn"
},
"devDependencies": {
"@reelo/eslint-config": "workspace:*",
"@reelo/typescript-config": "workspace:*",
"eslint": "^9.39.2",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"prettier-plugin-organize-imports": "^4.3.0",
"prettier-plugin-tailwindcss": "^0.7.2",
"turbo": "^2.6.3",
"typescript": "^5.9.3"
},
"dependencies": {
"@reelo/db": "workspace:*",
"@reelo/ui": "workspace:*"
},
"packageManager": "pnpm@10.4.1",
"engines": {
"node": ">=22"
}
}