-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
39 lines (39 loc) · 1.1 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
{
"name": "root",
"private": true,
"author": "Fig Team",
"license": "MIT OR Apache-2.0",
"packageManager": "[email protected]",
"engines": {
"node": "^20.0.0"
},
"scripts": {
"build": "turbo build",
"b": "turbo build",
"test": "vitest",
"test:ci": "vitest run --run",
"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 install",
"precommit": "lint-staged --config .lintstagedrc.mjs"
},
"devDependencies": {
"@vitest/coverage-v8": "^1.6.0",
"@vitest/ui": "^1.6.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"micromatch": "^4.0.8",
"prettier": "^3.3.3",
"tsx": "^4.19.2",
"turbo": "^2.2.3",
"vitest": "^1.6.0"
}
}