-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.19 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
{
"name": "frey-monorepo",
"version": "1.1.0",
"description": "Frey framework monorepo",
"private": true,
"packageManager": "npm@10.2.4",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"test:run": "turbo run test:run",
"test:coverage": "turbo run test:coverage",
"lint": "turbo run lint",
"format": "turbo run format",
"format:fix": "turbo run format:fix",
"type-check": "turbo run type-check",
"audit": "turbo run audit",
"dev": "turbo run dev",
"dev:docs": "cd apps/docs && npm run dev",
"build:docs": "cd apps/docs && npm run build",
"clean": "turbo run clean"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "24.5.0",
"@vitest/coverage-v8": "3.2.4",
"@vitest/ui": "3.2.4",
"audit-ci": "7.1.0",
"fastify": "5.6.0",
"license-checker": "25.0.1",
"nodemon": "3.1.10",
"npm-check-updates": "18.1.1",
"prettier": "3.6.2",
"supertest": "7.1.4",
"ts-node": "10.9.2",
"turbo": "^2.5.6",
"typescript": "5.9.2",
"vitest": "3.2.4"
},
"dependencies": {
"zod": "4.1.8"
}
}