-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 960 Bytes
/
package.json
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
{
"name": "oxytrack-turbo",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"prepare": "husky",
"docker-container": "docker run --name postgres-container -e POSTGRES_PASSWORD=postgres -d -p 5432:5432 -v /path/on/host:/var/lib/postgresql/data postgres",
"docker-psql": "docker exec -it postgres-container psql -U postgres -d postgres"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"devDependencies": {
"@oxytrack/eslint-config": "workspace:*",
"@oxytrack/typescript-config": "workspace:*",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "3.1.1",
"turbo": "latest",
"vite": "^5.1.3"
},
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@8.9.0",
"workspaces": [
"apps/*",
"packages/*"
]
}