-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 2.37 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
{
"private": true,
"name": "frontend",
"version": "0.0.0",
"type": "module",
"repository": "[email protected]:raminjafary/frontend-enterprise-architecture.git",
"description": "A Monorepo of Clean-BLoC Architecture Pattern (Nuxt)",
"author": "Ramin Jafary <[email protected]>",
"scripts": {
"prepare": "husky",
"postbuild": "rimraf **/*.js.map",
"app-shell:build": "pnpm --filter @frontend/app-shell build",
"app-shell:dev": "pnpm --filter @frontend/app-shell dev",
"app-shell:generate": "pnpm --filter @frontend/app-shell generate",
"app-shell:preview": "pnpm --filter @frontend/app-shell preview",
"app-shell:analyze": "pnpm --filter @frontend/app-shell analyze",
"app-shell:lint": "pnpm --filter @frontend/app-shell lint",
"app-shell:lint:fix": "pnpm --filter @frontend/app-shell lint:fix",
"app-mobile:dev": "pnpm --filter @frontend/app-mobile dev",
"format": "prettier --ignore-path .gitignore --check .",
"format:fix": "prettier --ignore-path .gitignore --write --list-different .",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"lint:style": "stylelint --ignore-path .gitignore '**/*.{scss,css,vue}'",
"lint:style:fix": "pnpm lint:style --fix",
"test": "vitest",
"coverage": "vitest run --coverage",
"prerelease:dry": "commit-and-tag-version -a --prerelease --dry-run",
"prerelease": "commit-and-tag-version -a --prerelease alpha",
"changelog": "commit-and-tag-version --skip.commit --skip.tag",
"release:dry": "commit-and-tag-version -a --dry-run",
"release:first:dry": "commit-and-tag-version -a --first-release --dry-run",
"release": "commit-and-tag-version -a && git push origin master --follow-tags",
"merge": "node scripts/create-merge-request.js",
"update:browserslist-db": "pnpm --filter @frontend/nuxt update-browserslist-db",
"browserslist": "pnpm --filter @frontend/nuxt browserslist",
"commit": "cz"
},
"volta": {
"node": "20.12.1",
"pnpm": "8.6.12"
},
"devDependencies": {
"@lib/eslint-config-custom": "workspace:*",
"@lib/prettier-config-custom": "workspace:*",
"@lib/stylelint-config-custom": "workspace:*",
"@lib/commit-lint-release": "workspace:*",
"cross-env": "^7.0.3",
"cypress": "^13.7.2",
"jsdom": "^24.0.0",
"postcss": "^8.4.38",
"rimraf": "^5.0.5",
"typescript": "^5.4.4",
"vitest": "^1.4.0"
}
}