-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 784 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 784 Bytes
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
{
"name": "stellar-circles",
"version": "1.0.0",
"description": "Social coordination infrastructure built on the Stellar ecosystem — micro-societies driven by earned social capital",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"lint": "turbo run lint",
"test": "turbo run test",
"db:migrate": "node database/scripts/migrate.js",
"db:seed": "node database/scripts/seed.js",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down"
},
"devDependencies": {
"turbo": "^2.0.0",
"typescript": "^5.4.0",
"prettier": "^3.2.0",
"eslint": "^8.57.0"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
}
}