-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 1.04 KB
/
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
{
"name": "repo",
"description": "Digital Music Assistant",
"private": true,
"scripts": {
"build": "dotenv -- turbo build",
"dev": "dotenv -- turbo dev --parallel",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo clean",
"db:push": "dotenv -- turbo db:push",
"format": "turbo format --continue -- --cache --cache-location node_modules/.cache/.prettiercache",
"format:fix": "turbo format --continue -- --write --cache --cache-location node_modules/.cache/.prettiercache",
"lint": "turbo lint --continue -- --cache --cache-location node_modules/.cache/.eslintcache",
"lint:fix": "turbo lint --continue -- --fix --cache --cache-location node_modules/.cache/.eslintcache",
"typecheck": "turbo typecheck"
},
"devDependencies": {
"@repo/eslint-config": "*",
"@repo/typescript-config": "*",
"dotenv-cli": "^7.3.0",
"turbo": "latest"
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*",
"tooling/*"
]
}