-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.24 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.24 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
37
38
39
40
41
42
{
"name": "geevapp",
"version": "0.1.0",
"private": true,
"description": "Decentralized social network built on the Stellar blockchain enabling users to create giveaways, request help, and participate in community-driven mutual aid.",
"keywords": [
"stellar",
"give",
"blockchain",
"social-impact",
"financial-inclusion",
"fundraising",
"soroban"
],
"homepage": "https://github.com/geevapp",
"repository": {
"type": "git",
"url": "https://github.com/geevapp/geev.git"
},
"license": "MIT",
"author": "Geevapp Contributors",
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"test": "turbo run test",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"clean": "turbo run clean && rm -rf node_modules",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"turbo": "latest"
},
"packageManager": "pnpm@10.0.0",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=10.0.0"
}
}