-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 987 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 987 Bytes
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
{
"name": "crest-ui",
"private": true,
"version": "0.1.0",
"packageManager": "pnpm@9.0.0",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "turbo run dev --parallel",
"build": "turbo run build",
"lint": "turbo run lint --continue",
"format": "prettier --write .",
"docs": "turbo run dev --filter=@crest-code/docs",
"build:docs": "turbo run build --filter=@crest-code/docs",
"test": "turbo run test",
"test:watch": "turbo run test:watch --parallel",
"coverage": "turbo run coverage"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@vitejs/plugin-react": "^5.1.0",
"@vitest/coverage-v8": "^4.0.6",
"jsdom": "^27.0.1",
"prettier": "^3.2.5",
"turbo": "^1.13.4",
"typescript": "^5.3.3",
"vitest": "^4.0.6"
},
"pnpm": {
"overrides": {
"esbuild": "0.25.12"
}
}
}