-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.3 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.3 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": "stellar-rent",
"version": "0.1.0",
"private": true,
"workspaces": ["apps/*", "services/*"],
"scripts": {
"build": "bun run build",
"dev": "bun run dev",
"lint": "bun run lint",
"format": "biome format --write .",
"prepare": "husky",
"format-and-lint": "biome check .",
"format-and-lint:fix": "biome check . --write",
"clean": "git clean -xdf node_modules",
"clean:node_modules": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +",
"release": "standard-version"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@types/bun": "latest",
"@types/express": "^4.17.23",
"@types/express-serve-static-core": "^4.19.6",
"@types/jsdom": "^27.0.0",
"@types/multer": "^1.4.13",
"biome": "^0.3.3",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"standard-version": "^9.5.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": ["biome check --write", "biome format --write"]
},
"dependencies": {
"@stellar/stellar-sdk": "^13.3.0",
"multer": "^2.0.2"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}