-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 891 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 891 Bytes
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
{
"name": "petk-monorepo",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"lint": "turbo run lint",
"dev": "turbo run dev",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build lint test && changeset publish --verbose"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.6",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.102",
"@types/js-yaml": "^4.0.9",
"@typescript-eslint/eslint-plugin": "^8.40.0",
"@typescript-eslint/parser": "^8.40.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"turbo": "^1.13.0",
"vitest": "^3.2.4"
}
}