-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.38 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.38 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
{
"name": "nuxt-auto-monorepo",
"private": true,
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/websideproject/nuxt-auto.git"
},
"author": "Benjamin Gervan",
"license": "MIT",
"packageManager": "bun@1.2.4",
"scripts": {
"dev": "turbo run dev --filter=nuxt-auto-playground",
"dev:prepare": "turbo run dev:prepare",
"dev:docs": "turbo run dev --filter=nuxt-auto-docs",
"docs": "turbo run dev --filter=nuxt-auto-docs",
"build": "turbo run build",
"build:api": "turbo run build --filter=@websideproject/nuxt-auto-api",
"build:admin": "turbo run build --filter=@websideproject/nuxt-auto-admin",
"build:docs": "turbo run build --filter=nuxt-auto-docs",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"automd": "automd --config .github/automd.json",
"version": "scripts/update-version.sh"
},
"devDependencies": {
"@nuxt/eslint-config": "^1.11.0",
"@types/node": "latest",
"automd": "^0.4.0",
"eslint": "^9.39.1",
"turbo": "^2.6.1",
"typescript": "^5.9.3",
"vitest": "^4.0.14",
"vue-tsc": "^3.1.5"
},
"workspaces": [
"apps/*",
"packages/*"
],
"trustedDependencies": [
"@parcel/watcher",
"better-sqlite3",
"esbuild",
"sharp",
"unrs-resolver",
"vue-demi"
]
}