|
1 | 1 | {
|
2 |
| - "name": "ts-turborepo-boilerplate", |
3 |
| - "version": "0.0.1", |
4 |
| - "description": "", |
5 |
| - "author": "Wonderland", |
6 |
| - "private": true, |
7 |
| - "license": "MIT", |
8 |
| - "type": "module", |
9 |
| - "engines": { |
10 |
| - "node": "20" |
11 |
| - }, |
12 |
| - "scripts": { |
13 |
| - "build": "turbo run build", |
14 |
| - "start": "turbo run start", |
15 |
| - "dev": "turbo run dev", |
16 |
| - "lint": "turbo run lint", |
17 |
| - "lint:fix": "turbo run lint:fix", |
18 |
| - "format": "turbo run format", |
19 |
| - "format:fix": "turbo run format:fix", |
20 |
| - "check-types": "turbo run check-types", |
21 |
| - "test": "turbo run test", |
22 |
| - "test:cov": "turbo run test:cov", |
23 |
| - "test:integration": "turbo run test:integration", |
24 |
| - "prepare": "husky", |
25 |
| - "preinstall": "npx only-allow pnpm" |
26 |
| - }, |
27 |
| - "packageManager": "[email protected]+sha256.46f1bbc8f8020aa9869568c387198f1a813f21fb44c82f400e7d1dbde6c70b40", |
28 |
| - "devDependencies": { |
29 |
| - "@commitlint/config-conventional": "19.4.1", |
30 |
| - "@types/node": "22.5.4", |
31 |
| - "commitlint": "19.4.1", |
32 |
| - "husky": "9.1.5", |
33 |
| - "turbo": "2.1.1", |
34 |
| - "typescript": "5.5.4" |
35 |
| - } |
| 2 | + "name": "ts-turborepo-boilerplate", |
| 3 | + "version": "0.0.1", |
| 4 | + "private": true, |
| 5 | + "description": "", |
| 6 | + "license": "MIT", |
| 7 | + "author": "Wonderland", |
| 8 | + "type": "module", |
| 9 | + "scripts": { |
| 10 | + "build": "turbo run build", |
| 11 | + "check-types": "turbo run check-types", |
| 12 | + "dev": "turbo run dev", |
| 13 | + "format": "turbo run format", |
| 14 | + "format:fix": "turbo run format:fix", |
| 15 | + "preinstall": "npx only-allow pnpm", |
| 16 | + "lint": "turbo run lint", |
| 17 | + "lint:fix": "turbo run lint:fix", |
| 18 | + "prepare": "husky", |
| 19 | + "start": "turbo run start", |
| 20 | + "test": "turbo run test", |
| 21 | + "test:cov": "turbo run test:cov", |
| 22 | + "test:integration": "turbo run test:integration" |
| 23 | + }, |
| 24 | + "lint-staged": { |
| 25 | + "*": "prettier --write --ignore-unknown", |
| 26 | + "*.js,*.ts,*.json": "eslint --fix", |
| 27 | + "package.json": "sort-package-json" |
| 28 | + }, |
| 29 | + "devDependencies": { |
| 30 | + "@commitlint/config-conventional": "19.4.1", |
| 31 | + "@ianvs/prettier-plugin-sort-imports": "4.3.1", |
| 32 | + "@types/node": "22.5.4", |
| 33 | + "@typescript-eslint/eslint-plugin": "7.18.0", |
| 34 | + "@typescript-eslint/parser": "7.18.0", |
| 35 | + "commitlint": "19.4.1", |
| 36 | + "eslint": "8.56.0", |
| 37 | + "eslint-config-prettier": "9.1.0", |
| 38 | + "eslint-plugin-prettier": "5.2.1", |
| 39 | + "husky": "9.1.5", |
| 40 | + "lint-staged": "15.2.10", |
| 41 | + "prettier": "3.3.3", |
| 42 | + "sort-package-json": "2.10.1", |
| 43 | + "turbo": "2.1.1", |
| 44 | + "typescript": "5.5.4" |
| 45 | + }, |
| 46 | + "packageManager": "[email protected]+sha256.46f1bbc8f8020aa9869568c387198f1a813f21fb44c82f400e7d1dbde6c70b40", |
| 47 | + "engines": { |
| 48 | + "node": "20" |
| 49 | + } |
36 | 50 | }
|
0 commit comments