forked from Zakky-Fat/Very-Princess
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.21 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.21 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
{
"name": "very-princess",
"version": "0.1.0",
"private": true,
"description": "Multi-organization maintenance payout infrastructure on the Stellar network (Soroban).",
"license": "MIT",
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"test": "turbo run test",
"lint": "turbo run lint",
"clean": "turbo run clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,js,json,md}\"",
"dev:infra": "docker compose up -d",
"stop:infra": "docker compose down",
"staging:build": "NODE_ENV=staging turbo run build",
"staging:deploy": "npm run staging:build && npm run staging:deploy:infra",
"staging:deploy:infra": "docker-compose -f docker-compose.staging.yml up -d",
"staging:stop": "docker-compose -f docker-compose.staging.yml down",
"release": "changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"pino-pretty": "^13.1.3",
"prettier": "^3.3.0",
"turbo": "^2.0.0",
"typescript": "^5.5.0"
},
"packageManager": "npm@10.8.0",
"dependencies": {
"@fastify/rate-limit": "^10.3.0"
}
}