-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.25 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
33
34
35
36
37
38
39
{
"name": "metrik",
"private": true,
"workspaces": [
"apps/*",
"packages/*",
"tooling/*"
],
"engines": {
"node": "20.x"
},
"packageManager": "[email protected]",
"scripts": {
"build": "turbo build",
"clean": "git clean -xdf node_modules",
"api:start": "turbo api:start",
"clean:workspaces": "turbo clean",
"db:start": "pscale connect main --port 3309 dev",
"db:generate": "turbo db:generate",
"db:push": "turbo db:push db:generate",
"db:studio": "pnpm -F db dev",
"dev": "turbo dev --parallel",
"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"
},
"dependencies": {
"@metrik/prettier-config": "workspace:^",
"prettier": "^3.2.2",
"turbo": "1.13.3-canary.4",
"typescript": "^5.5.2"
},
"prettier": "@metrik/prettier-config",
"devDependencies": {
"@turbo/gen": "^1.13.3"
}
}