-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathpackage.json
40 lines (40 loc) · 1 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
40
{
"name": "taco-workspace",
"private": true,
"workspaces": ["apps/*"],
"type": "module",
"license": "MIT",
"author": {
"name": "Raul de Melo",
"email": "contact@raulmelo.me"
},
"scripts": {
"prepare": "husky && bun run scripts/fix-graphql-types.ts",
"build": "turbo build",
"dev": "turbo dev",
"dev:docker": "docker-compose -f ./apps/api/docker-compose.yml up",
"start": "turbo start",
"lint": "turbo lint",
"lint:ci": "turbo lint:ci",
"db:generate": "turbo db:generate",
"image:build": "bun run scripts/build-image.ts",
"image:deploy": "bun run image:build"
},
"devDependencies": {
"@biomejs/biome": "1.6.4",
"@changesets/cli": "2.27.1",
"@types/bun": "1.0.12",
"husky": "9.0.11",
"lint-staged": "15.2.2",
"minimist": "1.2.8",
"turbo": "1.13.2",
"typescript": "5.4.5"
},
"packageManager": "bun@1.1.3",
"engines": {
"bun": "1.1.3"
},
"lint-staged": {
"*.{js,ts,json}": "bunx @biomejs/biome check --apply"
}
}