-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.53 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
42
43
44
45
46
47
48
49
50
51
{
"name": "project-starter",
"type": "module",
"version": "0.0.0",
"private": true,
"packageManager": "pnpm@9.15.3",
"engines": {
"node": ">=20.16.0"
},
"scripts": {
"dev": "turbo watch dev",
"build": "turbo run build",
"generate": "turbo run generate",
"preview": "turbo run preview",
"preview:build": "turbo run preview:build",
"preview:generate": "turbo run preview:generate",
"check-types": "turbo run check-types",
"root:lint": "eslint .",
"root:lint:fix": "eslint . --fix",
"clear": "turbo run clear && rimraf **/.turbo; rimraf **/coverage; rimraf **/node_modules || true",
"postinstall": "husky || true",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@project-starter/eslint-config": "workspace:*",
"@project-starter/shared": "workspace:*",
"@project-starter/typescript-config": "workspace:*",
"@project-starter/unocss-config": "workspace:*",
"@vitest/coverage-v8": "catalog:",
"eslint": "catalog:",
"husky": "catalog:",
"jiti": "catalog:",
"lint-staged": "catalog:",
"rimraf": "catalog:",
"turbo": "latest",
"typescript": "catalog:",
"unbuild": "catalog:",
"vitest": "catalog:"
},
"pnpm": {
"patchedDependencies": {
"nprogress": "patches/nprogress.patch",
"@primevue/nuxt-module": "patches/@primevue__nuxt-module.patch",
"@primevue/core": "patches/@primevue__core.patch",
"primevue": "patches/primevue.patch"
}
},
"lint-staged": {
"*": "eslint --fix"
}
}