generated from sonofmagic/monorepo-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.24 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
{
"name": "pnpm-turbo-monorepo-template",
"version": "0.1.0",
"private": true,
"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": "bumpp -r --no-push --no-commit",
"publish-packages": "turbo run build lint test && changeset version && changeset publish",
"preinstall": "npx only-allow pnpm"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.12.4",
"@vitest/coverage-v8": "^1.4.0",
"bumpp": "^9.4.0",
"eslint": "^8.57.0",
"eslint-config-icebreaker": "^1.2.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"lodash-es": "^4.17.21",
"only-allow": "^1.2.1",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"turbo": "^1.13.2",
"typescript": "^5.4.3",
"unbuild": "^2.0.0",
"vitest": "^1.4.0"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}