bolt.new/package.json

34 lines
802 B
JSON
Raw Normal View History

2024-07-10 16:44:39 +00:00
{
"private": true,
"license": "MIT",
"packageManager": "pnpm@9.4.0",
"scripts": {
"playground:dev": "pnpm run --filter=playground dev",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
2024-07-30 09:15:38 +00:00
"build": "pnpm run -r build",
2024-07-10 16:44:39 +00:00
"test": "pnpm run -r test",
2024-07-29 18:31:45 +00:00
"typecheck": "pnpm run -r typecheck"
2024-07-10 16:44:39 +00:00
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"engines": {
2024-07-11 19:25:19 +00:00
"node": "20.15.1",
2024-07-10 16:44:39 +00:00
"pnpm": "9.4.0"
},
"devDependencies": {
"@blitz/eslint-plugin": "0.1.0",
"@commitlint/config-conventional": "^19.2.2",
"commitlint": "^19.3.0",
"husky": "^9.0.11",
"is-ci": "^3.0.1",
"prettier": "^3.3.2",
"vitest": "^2.0.1"
},
"resolutions": {
"@typescript-eslint/utils": "^8.0.0-alpha.30"
}
}