-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
41 lines (41 loc) · 1.27 KB
/
package.json
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
{
"name": "root",
"private": true,
"author": "Amazon Web Services",
"repository": "https://github.com/aws/amazon-q-developer-cli",
"license": "MIT OR Apache-2.0",
"packageManager": "[email protected]+sha256.43abf6e720fb7bc53c591b0862605c7d323d0a9d2dd33bcac07b062e13cf4948",
"type": "module",
"engines": {
"node": "^22.0.0"
},
"scripts": {
"build": "turbo build",
"b": "turbo build",
"test": "vitest",
"test:ci": "vitest run --run --coverage",
"test:ui": "vitest --ui",
"coverage": "vitest run --coverage",
"lint": "turbo lint --parallel",
"lint:fix": "turbo lint:fix --parallel",
"dev": "turbo dev",
"dev:autocomplete": "pnpm -C packages/autocomplete dev",
"dev:dashboard": "pnpm -C packages/dashboard dev",
"preview:autocomplete": "pnpm -C packages/autocomplete preview",
"preview:dashboard": "pnpm -C packages/dashboard preview",
"clean": "turbo clean --parallel",
"prepare": "husky",
"precommit": "lint-staged --config .lintstagedrc.mjs"
},
"devDependencies": {
"@vitest/coverage-v8": "^2.1.8",
"@vitest/ui": "^2.1.8",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"micromatch": "^4.0.8",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"turbo": "^2.3.3",
"vitest": "^2.1.8"
}
}