-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2.32 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "louffee",
"type": "module",
"packageManager": "[email protected]",
"devDependencies": {
"@biomejs/biome": "^1.5.3",
"@louffee/tsconfig": "workspace:*",
"@next/bundle-analyzer": "^14.1.0",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@turbo/codemod": "^1.12.4",
"@turbo/gen": "^1.12.4",
"@types/bun": "latest",
"@types/react": "^18",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.4.0",
"drizzle-kit": "^0.20.14",
"jsdom": "^24.0.0",
"react-docgen-typescript": "^2.2.2",
"vite": "^5.1.4",
"vite-tsconfig-paths": "^4.3.1",
"vitest": "^1.3.1"
},
"scripts": {
"dev": "( cd apps/www && bun run dev )",
"workspace:sync": "rimraf -rf bun.lockb node_modules && bun install",
"lint": "bun x @biomejs/biome lint ./{packages,apps}/*",
"format": "bun x @biomejs/biome format ./{packages,apps}/* --write",
"clean:node_modules": "rimraf -rf ./node_modules bun.lockb",
"storybook": "( cd apps/storybook && bun run storybook )",
"storybook:debug": "( cd apps/storybook && bun run storybook:debug )",
"sb": "( cd apps/storybook && bun run storybook )",
"sb:debug": "( cd apps/storybook && bun run storybook:debug )",
"test": "vitest --config vitest.config.ts",
"test:coverage": "rimraf -rf ./coverage && vitest --config vitest.coverage.config.ts --coverage",
"docker:up": "docker compose -f .docker/docker-compose.yaml up -d",
"docker:down": "docker compose -f ./.docker/docker-compose.yaml down",
"db:studio": "( cd packages/drizzle && bun run db:studio )",
"db:generate": "( cd packages/drizzle && bun run db:generate )",
"db:migration": "( cd packages/drizzle && bun run db:migration )",
"db:seed": "( cd packages/drizzle && bun run db:seed )",
"build": "turbo run build",
"mdx:issue-checker": "npx @hipster/mdx2-issue-checker"
},
"peerDependencies": {
"typescript": "^5"
},
"workspaces": ["./packages/*", "./apps/*", "./config/*"],
"author": {
"email": "[email protected]",
"name": "Louffee Engineering Team",
"url": "https://github.com/louffee"
},
"contributors": [
{
"email": "[email protected]",
"name": "Leonardo Lemos",
"url": "https://github.com/mrlemoos"
}
],
"license": "SEE LICENSE IN license"
}