forked from Ajo-contrib/soroban-ajo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.67 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
43
44
45
{
"name": "ajo-monorepo",
"version": "0.1.0",
"private": true,
"description": "Drips - Decentralized Savings Groups Platform",
"scripts": {
"dev": "concurrently \"npm run dev:frontend\" \"npm run dev:backend\"",
"dev:frontend": "cd frontend && npm run dev",
"dev:backend": "cd backend && npm run dev",
"dev:docs": "cd frontend && npm run dev",
"build": "npm run build:frontend && npm run build:backend && npm run build:contracts",
"build:frontend": "cd frontend && npm run build",
"build:backend": "cd backend && npm run build",
"build:contracts": "cd contracts/ajo && stellar contract build",
"build:docs": "cd frontend && npm run build",
"install:all": "npm install && cd frontend && npm install && cd ../backend && npm install",
"lint": "npm run lint:frontend && npm run lint:backend",
"lint:frontend": "cd frontend && npm run lint",
"lint:backend": "cd backend && npm run lint",
"type-check": "npm run type-check:frontend && npm run type-check:backend",
"type-check:frontend": "cd frontend && npm run type-check",
"type-check:backend": "cd backend && npm run type-check",
"test:contracts": "cd contracts/ajo && cargo test",
"prepare": "husky install",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md,yml,yaml}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md,yml,yaml}\""
},
"devDependencies": {
"concurrently": "^8.2.2",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.2.0"
},
"workspaces": [
"frontend",
"backend"
],
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"dependencies": {
"express-rate-limit": "^8.2.1"
}
}