-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 1.09 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": "scrapbook",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build-site": "dotenv -c -- turbo build --filter=site",
"dev-site": "dotenv -c -- turbo dev --filter=site",
"lint": "dotenv -c -- turbo lint",
"crawler": "dotenv -c -- turbo dev --filter=crawler",
"analyser": "dotenv -c -- turbo start --filter=analyser",
"importer": "dotenv -c -- turbo start --filter=importer --",
"gen-types": "dotenv -c -- npx supabase gen types typescript --project-id '$SUPABASE_PROJECT_REF_ID' --schema public > packages/shared/src/database/schema-generated.ts ",
"dev-discord-bot": "dotenv -c -- turbo dev --filter=discord-bot",
"prod-run-discord-bot": "dotenv -c -- turbo build --filter=discord-bot && turbo start --filter=discord-bot"
},
"devDependencies": {
"eslint": "7.32.0",
"prettier": "^2.5.1",
"supabase": "^1.99.5",
"tsconfig": "*",
"turbo": "^2.0.7",
"typescript": "^5.2.2"
},
"packageManager": "[email protected]",
"dependencies": {
"@radix-ui/react-checkbox": "^1.1.1",
"dotenv-cli": "^7.3.0"
}
}