-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.27 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "auto-engineer",
"private": true,
"type": "module",
"scripts": {
"build": "turbo run build",
"watch": "turbo watch build auto",
"watch:debug": "turbo watch build auto:debug",
"lint": "biome lint .",
"lint:fix": "biome lint . --write",
"format": "biome format .",
"format:fix": "biome format . --write",
"format:check": "biome format .",
"type-check": "turbo run type-check",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"check": "pnpm i && pnpm build && biome check . && turbo run type-check test",
"check:fix": "biome check . --write",
"clean": "tsx scripts/clean.ts",
"clean:check": "pnpm clean && pnpm check",
"link:dev": "pnpm --filter @auto-engineer/* run link:dev",
"unlink:dev": "pnpm --filter @auto-engineer/* run unlink:dev",
"changeset:prepare-changelog": "tsx scripts/prepare-changelog.ts",
"version": "changeset version && pnpm changeset:prepare-changelog",
"release": "turbo run release",
"prepare": "husky",
"update:auto": "node scripts/clean-global-auto.js && rm -rf $(pnpm root -g) && pnpm i -g @auto-engineer/cli@latest",
"kill:auto": "lsof -ti:5555 | xargs kill -9 2>/dev/null"
},
"devDependencies": {
"@biomejs/biome": "^2.3.10",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@commitlint/types": "^19.2.1",
"@types/debug": "^4.1.12",
"@types/node": "^20.11.24",
"@vitejs/plugin-react": "^5.0.2",
"@vitest/coverage-v8": "^3.2.3",
"autoprefixer": "^10.4.20",
"husky": "^9.0.11",
"jiti": "^2.5.0",
"playwright": "^1.54.1",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.11",
"tsx": "^4.7.1",
"turbo": "^2.8.10",
"typescript": "~5.8.3",
"vite": "^5.4.1",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "pnpm@10.15.0",
"resolutions": {
"punycode": "^2.3.1",
"@types/react": "^18.3.23",
"@types/react-dom": "^18.3.7"
},
"dependencies": {
"axios": "^1.10.0",
"debug": "^4.4.1",
"dotenv": "^16.4.5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,scss,md}": [
"biome check --write --no-errors-on-unmatched"
]
}
}