-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.09 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.09 KB
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
{
"private": true,
"scripts": {
"build": "turbo run build",
"start": "turbo run start",
"dev": "turbo run dev",
"lint": "turbo run lint",
"preinstall": "npx only-allow pnpm",
"migrations:generate": "pnpm --filter=db migrations:generate",
"migrations:apply": "pnpm --filter=db migrations:apply",
"migrations:drop": "pnpm --filter=db migrations:drop",
"studio": "pnpm --filter=db studio",
"db:seed": "pnpm --filter=db db:seed",
"deploy-discord:dev": "pnpm --filter=bot deploy:dev",
"deploy-discord:prod": "pnpm --filter=bot deploy:prod",
"format": "prettier --write .",
"format-check": "prettier --check ."
},
"devDependencies": {
"@turbo/gen": "^2.0.9",
"dotenv-cli": "^7.4.2",
"eslint": "^9.7.0",
"prettier": "^3.3.3",
"turbo": "^2.0.9"
},
"packageManager": "pnpm@8.3.1+sha512.d264f6640bf4f09de7cfcc547568515bcf0613cf485a03e8ff16616fa69c4172b6f9a0a2925ee44fb060df565c9c9a8eaf061749e77af318cb77f6684a7051f3",
"name": "hackkit",
"dependencies": {
"@libsql/client": "^0.14.0",
"prettier-plugin-tailwindcss": "^0.6.5"
}
}