generated from sonofmagic/monorepo-template
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.51 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
{
"name": "monorepo-template",
"type": "module",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"test": "vitest run --coverage.enabled",
"test:dev": "vitest",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"release": "changeset",
"publish-packages": "turbo run build lint test && changeset version && changeset publish",
"preinstall": "npx only-allow pnpm",
"prepare": "husky",
"commit": "commit"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.7",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/prompt-cli": "^19.3.1",
"@commitlint/types": "^19.0.3",
"@icebreakers/eslint-config": "^0.3.12",
"@types/lodash": "^4.17.6",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.14.10",
"@vitest/coverage-v8": "^2.0.2",
"eslint": "^9.7.0",
"husky": "^9.0.11",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"only-allow": "^1.2.1",
"pathe": "^1.1.2",
"tslib": "^2.6.3",
"tsup": "^8.1.0",
"tsx": "^4.16.2",
"turbo": "^2.0.6",
"typescript": "^5.5.3",
"unbuild": "^2.0.0",
"vitest": "^2.0.2"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}