-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
44 lines (44 loc) · 1.29 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": "adastra-monorepo",
"author": "Odestry",
"private": true,
"license": "MIT",
"workspaces": [
"packages/*",
"templates/*"
],
"scripts": {
"dev": "turbo run dev --filter=*adastra* --parallel",
"dev:templates": "turbo run dev --filter=template-* --parallel",
"build": "turbo run build --filter=*adastra*",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"check": "turbo run check",
"test": "turbo run test --filter=*adastra*",
"test:watch": "turbo run test:watch --filter=*adastra*",
"version": "changeset version",
"release": "changeset publish",
"format": "prettier --write \"**/*.{js,ts,tsx,md}\""
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.7",
"@types/node": "^22.4.0",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"@vitest/coverage-c8": "^0.33.0",
"adastra-prettier-config": "workspace:*",
"eslint": "^9.9.0",
"eslint-config-adastra": "workspace:*",
"prettier": "^3.3.3",
"tsup": "^8.2.4",
"turbo": "^2.0.14",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
},
"packageManager": "pnpm@7.26.1",
"engines": {
"node": ">=14.0.0"
},
"prettier": "adastra-prettier-config"
}