-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 829 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 829 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
{
"name": "stellarlend",
"version": "1.0.0",
"description": "StellarLend monorepo – pre-commit tooling and workspace scripts",
"private": true,
"workspaces": [
"api"
],
"scripts": {
"prepare": "husky",
"lint:api": "npm run lint --workspace=api",
"format:api": "npm run format --workspace=api",
"typecheck:api": "npm run typecheck --workspace=api"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"husky": "^9.1.4",
"lint-staged": "^15.2.7"
},
"lint-staged": {
"api/src/**/*.ts": [
"npm run lint --workspace=api --",
"npm run format:check --workspace=api --",
"npm run typecheck --workspace=api"
],
"contract/**/*.rs": [
"cargo check --manifest-path contract/Cargo.toml"
]
}
}