forked from Hazina-Escrow/Hazina-Escrow
-
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.73 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.73 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": "hazina-escrow",
"version": "1.0.0",
"description": "Hazina Data Escrow — Web3 data marketplace on Stellar",
"private": true,
"scripts": {
"install:all": "npm install --prefix backend && npm install --prefix frontend",
"dev": "concurrently --names \"API,UI\" --prefix-colors \"yellow,cyan\" \"npm run dev --prefix backend\" \"npm run dev --prefix frontend\"",
"dev:backend": "npm run start:dev --prefix backend",
"dev:frontend": "npm run dev --prefix frontend",
"build": "npm run build --prefix backend && npm run build --prefix frontend",
"prepare": "husky",
"format": "prettier --write \"backend/src/**/*.ts\" \"frontend/src/**/*.{ts,tsx}\"",
"format:check": "prettier --check \"backend/src/**/*.ts\" \"frontend/src/**/*.{ts,tsx}\"",
"lint": "eslint \"backend/src/**/*.{ts,tsx}\" \"frontend/src/**/*.{ts,tsx}\"",
"lint:fix": "npm run lint -- --fix",
"format:all": "prettier --check .",
"format:write": "prettier --write .",
"contracts:check": "./scripts/contracts/checks.sh",
"contracts:formal": "./scripts/contracts/formal-checks.sh"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"concurrently": "^8.2.2",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^15.13.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.4.2",
"typescript-eslint": "^8.18.0"
},
"lint-staged": {
"backend/src/**/*.ts": [
"prettier --write",
"npm run lint --prefix backend -- --max-warnings=0"
],
"frontend/src/**/*.{ts,tsx}": [
"prettier --write",
"npm run lint --prefix frontend -- --max-warnings=0"
]
}
}