-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
120 lines (120 loc) · 4.19 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "next-starter-tpl",
"version": "1.1.0",
"private": true,
"description": "A monorepo boilerplate using pnpm, turborepo and nextjs",
"keywords": [
"template",
"boilerplate",
"nextjs",
"vercel",
"turbo",
"turbopack",
"wayofdev",
"monorepo",
"turborepo",
"pnpm",
"example",
"workspace",
"eslint-plugin",
"docker",
"docker-compose",
"traefik",
"storybook"
],
"homepage": "https://github.com/wayofdev/next-starter-tpl",
"bugs": {
"url": "https://github.com/wayofdev/next-starter-tpl/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/wayofdev/next-starter-tpl"
},
"license": "MIT",
"author": {
"name": "Andrij Orlenko",
"email": "[email protected]",
"url": "https://github.com/lotyp"
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build --color --parallel",
"build:web": "turbo run build --filter=web --color --parallel",
"build:docs": "turbo run build --filter=docs --color --parallel",
"build:storybook": "turbo run build --filter=storybook --color --parallel",
"build:ui": "turbo run build --filter=ui --color --parallel",
"dev": "turbo run dev --parallel",
"dev:web": "turbo run dev --filter=web --parallel",
"dev:docs": "turbo run dev --filter=docs --color --parallel",
"dev:storybook": "turbo run dev --filter=storybook --color --parallel",
"clean": "run-p clean:global-cache clean:turbo",
"clean:turbo": "turbo clean --parallel",
"clean:global-cache": "rimraf ./.cache",
"commit": "git-cz",
"cs": "changeset",
"cs:publish": "changeset publish",
"cs:release": "turbo build lint test && changeset version && changeset publish",
"cs:version": "changeset version",
"deps:check": "pnpm dlx npm-check-updates@latest --configFileName .ncurc.yml --deep --mergeConfig",
"deps:update": "pnpm dlx npm-check-updates@latest --configFileName .ncurc.yml -u --deep --mergeConfig && pnpm install",
"preinstall": "npx only-allow pnpm",
"lint": "run-p lint:turbo lint:md lint:js lint:secrets lint:package-json",
"lint:commits": "pnpm commitlint --from HEAD~1 --to HEAD --verbose",
"lint:fix": "turbo lint:fix && pnpm lint:package-json",
"lint:js": "eslint --fix **/*.js",
"lint:md": "markdownlint --fix **/*.md --ignore '**/node_modules/**' --ignore '**/CHANGELOG.md'",
"lint:package-json": "sort-package-json package.json {apps,packages}/*/package.json",
"lint:secrets": "secretlint **/*",
"lint:turbo": "turbo lint --parallel",
"lint:types": "turbo lint:types --parallel",
"lint:dist": "turbo run lint:dist --parallel",
"prepare": "is-ci || husky install",
"test:unit": "turbo run test --concurrency=1",
"test:e2e:install": "playwright install",
"test:e2e": "turbo run test:e2e --concurrency=1",
"lint:css": "turbo run lint:css --parallel",
"lint:html": "turbo run lint:html --parallel",
"start": "turbo run start",
"lint:browsers": "browserslist",
"lint:size": "turbo run lint:size --parallel",
"analyze": "turbo run analyze --parallel",
"lint:staged": "lint-staged --allow-empty"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "2.27.1",
"@commitlint/cli": "^18.0.0",
"@types/node": "^20.4.2",
"@types/prettier": "^2.7.3",
"@types/shell-quote": "^1.7.1",
"@wayofdev/browserslist-config": "^3.0.1",
"@wayofdev/commitlint-config": "^3.0.1",
"@wayofdev/eslint-config-bases": "^3.0.2",
"@wayofdev/lint-staged-config": "^2.1.1",
"@wayofdev/markdownlint-config": "^3.0.1",
"@wayofdev/secretlint-config": "^3.0.1",
"@wayofdev/tsconfig-config": "^3.0.1",
"browserslist": "^4.21.9",
"eslint": "^8.45.0",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"lint-staged": "^14.0.0",
"markdownlint": "^0.33.0",
"markdownlint-cli": "^0.39.0",
"npm-run-all2": "^5.0.0",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"secretlint": "^7.0.3",
"shell-quote": "^1.8.1",
"sort-package-json": "^2.5.1",
"turbo": "^1.10.7",
"typescript": "^5.1.6"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0"
}
}