-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 866 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
32
{
"name": "dhaaga",
"version": "0.10.2",
"description": "A fun 🥳 and cozy ☕ microblogging app for the decentralized social web ",
"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:mastodon": "yarn --cwd ./packages/shared-provider-mastodon build",
"build:dhaagajs": "yarn --cwd ./packages/shared-abstraction-activitypub build",
"build": "yarn build:mastodon && yarn build:dhaagajs"
},
"workspaces": [
"packages/**",
"apps/mobile",
"apps/web"
],
"dependencies": {
"prettier": "^3.3.2"
},
"prettier": {
"bracketSpacing": true,
"printWidth": 80,
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"useTabs": true
},
"type": "module"
}