-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) Β· 846 Bytes
/
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
{
"name": "dhaaga",
"version": "0.14.0",
"description": "Dhaaga - An indie SNS app that blends sleek design π
, useful features β¨ and fun ways to discover and connect π",
"author": "Debashish Patra <suvam.io>",
"license": "AGPLv3",
"private": true,
"scripts": {
"dev:app": "yarn workspace @dhaaga/mobile dev",
"dev:web": "yarn workspace @dhaaga/web dev",
"build:bridge": "bun run --cwd ./packages/bridge build",
"build:orm": "bun run --cwd ./packages/orm build",
"build": "bun run build:bridge && bun run build:orm"
},
"workspaces": [
"packages/**",
"apps/mobile"
],
"dependencies": {
"prettier": "^3.4.2"
},
"prettier": {
"bracketSpacing": true,
"printWidth": 80,
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"useTabs": true
},
"type": "module"
}