Skip to main content

package.json

Metadata

  • Purpose: Package manifest defining scripts and dependencies.
  • Domain: root
  • Language: json
  • Bytes: 764
  • Lines: 27
  • Content hash (short): 54f2b7db
  • Source (start): package.json:1
  • Source (end): package.json:27

Indexed Symbols

No indexed functions/methods detected in this file.

Markdown Headings (if applicable)

No markdown headings detected.

Source Preview

{
"name": "anchor-msp",
"version": "0.1.0",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"format": "prettier --write .",
"validate": "pnpm lint && pnpm typecheck && pnpm test",
"migrate": "./scripts/apply-migrations.sh",
"jwt:dev": "node scripts/generate-dev-jwt.mjs",
"seed:dev": "./scripts/seed-dev-data.sh",
"dev:stack": "./scripts/run-local-stack.sh",
"test:smoke": "./scripts/smoke-test.sh"
},
"devDependencies": {
"@types/node": "^22.10.5",
"prettier": "^3.4.2",
"turbo": "^2.3.3",
"typescript": "^5.7.2"
}