-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.79 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
{
"name": "monorepo-template",
"type": "module",
"private": true,
"packageManager": "pnpm@9.7.0",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "turbo build",
"build.packages": "turbo build --filter=./packages/**",
"ci.publish": "changeset publish",
"clean": "turbo clean",
"dev.main": "turbo dev --filter=@monorepo-template/main",
"dev.packages": "turbo dev --filter=./packages/**",
"dev.playground.preact": "turbo dev --filter=@monorepo-template/playground-preact",
"dev.playground.qwik": "turbo dev --filter=@monorepo-template/playground-qwik",
"dev.playground.react": "turbo dev --filter=@monorepo-template/playground-react",
"dev.playground.solid": "turbo dev --filter=@monorepo-template/playground-solid",
"dev.playground.svelte": "turbo dev --filter=@monorepo-template/playground-svelte",
"dev.playground.vue": "turbo dev --filter=@monorepo-template/playground-vue",
"dev.plugin.icons": "turbo dev --filter=icons-figma-plugin",
"graph": "turbo run build --graph=graph.html",
"preinstall": "npx only-allow pnpm",
"lint": "turbo lint",
"lint.fix": "turbo lint.fix",
"lint.staged": "lint-staged",
"prepare": "husky install",
"test": "turbo test"
},
"devDependencies": {
"@monorepo-template/eslint-config": "workspace:^",
"@monorepo-template/typescript-config": "workspace:^",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.7",
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/types": "^19.0.3",
"husky": "^9.1.4",
"lint-staged": "^15.2.8",
"prettier": "^3.3.3",
"sort-package-json": "^2.10.0",
"turbo": "^2.0.12"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,css}": [
"npx eslint --fix"
]
}
}