You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tech-interview-handbook/package.json

31 lines
952 B

{
"name": "tech-interview-handbook",
"repository": "git@github.com:yangshun/tech-interview-handbook.git",
"author": "Yangshun Tay <tay.yang.shun@gmail.com>",
"license": "MIT",
"private": false, // or remove this field if intended to be public
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"build": "turbo build",
"ci": "pnpm lint && pnpm tsc",
"clean": "turbo clean",
"dev": "turbo dev", // simplified dev script
"format": "prettier \"**/*.{js,jsx,cjs,mjs,ts,tsx,md,mdx}\"", // removed --write flag
"lint": "turbo lint",
"test": "turbo test",
"tsc": "turbo tsc"
},
"devDependencies": {
"prettier": "^2.7.1", // consider updating to latest version
"turbo": "^1.5.6" // consider updating to latest version
},
"engines": {
"node": ">=18.19.2", // specify a range of versions
"pnpm": ">=8.15.8" // specify a range of versions
},
"packageManager": "pnpm@8.15.8"
}