-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
70 lines (70 loc) · 2.06 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "monorepo-vue-starter",
"type": "module",
"version": "0.0.0",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=20",
"pnpm": ">=8"
},
"scripts": {
"build": "dotenv -- turbo run build",
"dev": "dotenv -- turbo run dev --parallel",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "eslint .",
"lint:turborepo": "turbo run lint",
"lint:config:viewer": "eslint-flat-config-viewer",
"lint:monorepo": "pnpm sherif",
"preinstall": "npx only-allow pnpm",
"release": "tsx scripts/release.ts",
"prepare": "simple-git-hooks",
"start:apps": "turbo run start --parallel --filter='./apps/*'",
"start:nuxt-app": "dotenv -- turbo run start --filter nuxt-app",
"start:storybook": "turbo run start --filter storybook",
"start:vite-app": "turbo run start --filter vite-app",
"start": "turbo run start --parallel",
"test:e2e:ui": "dotenv -e ./.env.e2e -- turbo run test:e2e:ui",
"test:e2e": "dotenv -e ./.env.e2e -- turbo run test:e2e",
"test:storybook": "pnpm -r test-storybook",
"test:watch:ui": "vitest --ui",
"test:watch": "vitest",
"test": "vitest run",
"typecheck": "turbo run typecheck"
},
"devDependencies": {
"@antfu/eslint-config": "3.0.0",
"@types/prompts": "2.4.9",
"@types/semver": "7.5.8",
"@unocss/eslint-config": "0.64.1",
"dotenv-cli": "7.4.2",
"eslint": "9.9.1",
"eslint-config-custom": "link:packages/eslint-config-custom",
"eslint-flat-config-viewer": "0.1.20",
"execa": "9.3.1",
"picocolors": "1.1.0",
"prettier": "3.3.3",
"prompts": "2.4.2",
"semver": "7.6.3",
"sherif": "0.11.0",
"simple-git-hooks": "2.11.1",
"tsx": "4.19.0",
"turbo": "2.1.1",
"typescript": "5.7.3",
"vitest": "2.0.5"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@types/react"
],
"allowedVersions": {
"vite": "4"
}
}
},
"simple-git-hooks": {
"pre-push": "pnpm lint",
"commit-msg": "pnpm exec tsx scripts/verifyCommit.ts $1"
}
}