-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 996 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 996 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
31
32
33
34
35
36
37
38
39
{
"name": "stellar-local",
"version": "0.1.0",
"description": "A blockchain-powered operating system for real-world neighborhood economies",
"private": true,
"workspaces": [
"apps/*",
"services/*",
"packages/*"
],
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"test": "turbo run test",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"clean": "turbo run clean && rm -rf node_modules",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"docker:logs": "docker-compose logs -f"
},
"devDependencies": {
"turbo": "^2.0.0",
"prettier": "^3.3.0",
"typescript": "^5.5.0",
"@types/node": "^20.0.0",
"eslint": "^9.0.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Fayedamz/Stellar-Local.git"
},
"author": "fayedamz",
"license": "MIT"
}