-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.18 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.18 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
33
34
35
36
{
"name": "@raz2/strategic-intelligence",
"version": "1.0.0",
"private": true,
"description": "Strategic Business Intelligence System for Guild.xyz CEO - Supporting strategic decision making, product design, and enterprise sales for a 6M+ user platform",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "./scripts/build.sh",
"build-parallel": "bun run --filter='*' build",
"build-ui": "./scripts/build-ui.sh",
"dev": "bun run --filter='*' dev",
"start": "./scripts/db-setup.sh && cd packages/telegram-bot && bun run start",
"start-core": "./scripts/db-setup.sh && cd packages/core && bun run dev",
"db:migrate": "./scripts/db-setup.sh",
"start-bot": "./scripts/run.sh",
"start-ui": "cd packages/idea-ui && bun run dev",
"test": "bun run --filter='*' test",
"lint": "bun run --filter='*' lint",
"type-check": "bun run --filter='*' type-check",
"clean": "bun run --filter='*' clean",
"setup": "./scripts/setup.sh"
},
"devDependencies": {
"@types/node": "^20.10.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "bun@1.0.0",
"dependencies": {
"dotenv": "^17.1.0"
}
}