-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 850 Bytes
/
Copy pathpackage.json
File metadata and controls
21 lines (21 loc) · 850 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "bludstack",
"version": "1.0.0",
"private": true,
"description": "BludStack monorepo root - tooling, hooks, and formatting only. The app lives in mobile/ and the API in backend/.",
"scripts": {
"prepare": "husky",
"format": "prettier --write \"mobile/src/**/*.{ts,tsx}\" \"backend/src/**/*.js\" \"*.{json,md}\"",
"format:check": "prettier --check \"mobile/src/**/*.{ts,tsx}\" \"backend/src/**/*.js\"",
"lint:mobile": "npm --prefix mobile run lint",
"lint:backend": "npm --prefix backend run lint",
"test:mobile": "npm --prefix mobile test",
"test:backend": "npm --prefix backend test",
"check:forbidden": "git ls-files \"mobile/src\" \"backend/src\" | node scripts/check-forbidden.mjs"
},
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^15.5.1",
"prettier": "^3.4.2"
}
}