-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.57 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
46
47
48
49
50
51
{
"name": "cooplumen",
"version": "0.1.0",
"private": true,
"description": "Decentralized community finance on the Stellar blockchain",
"scripts": {
"dev": "docker-compose up",
"dev:backend": "cd backend && npm run dev",
"dev:frontend": "cd frontend && npm run dev",
"install:all": "npm install && cd backend && npm install && cd ../frontend && npm install",
"lint": "cd backend && npm run lint && cd ../frontend && npm run lint",
"type-check": "cd backend && npm run type-check && cd ../frontend && npm run type-check",
"test": "cd backend && npm test && cd ../frontend && npm test",
"test:coverage": "cd backend && npm run test:coverage && cd ../frontend && npm run test:coverage",
"db:migrate": "cd backend && npm run db:migrate",
"format": "prettier --write \"**/*.{ts,tsx,js,json,css,md,yml,yaml}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,json,css,md,yml,yaml}\"",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "https://github.com/yourname/cooplumen.git"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"license": "MIT",
"keywords": [
"stellar",
"blockchain",
"defi",
"community-finance",
"open-source"
],
"lint-staged": {
"frontend/src/**/*.{ts,tsx,js,css}": [
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"devDependencies": {
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"husky": "^9.1.7",
"lint-staged": "^17.0.7",
"prettier": "^3.8.4"
}
}