-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.34 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
{
"name": "@jdion/mono",
"version": "0.0.0",
"private": true,
"packageManager": "pnpm@latest",
"author": "Jonathan Dion <[email protected]> (https://github.com/jonathandion/)",
"license": "MIT",
"scripts": {
"audit": "pnpm audit --audit-level high",
"build": "turbo run build --color --concurrency 14",
"dev": "turbo run dev --color --concurrency 14",
"change": "changeset",
"cleanup": "turbo cleanup --concurrency 14",
"ci": "pnpm run -r build && pnpm run -r types:check && pnpm run lint",
"ci:debug": "act pull_request --secret-file my.secrets -s GITHUB_TOKEN=\"$(gh auth token)\" --container-architecture linux/amd64",
"ci:publish": "pnpm publish -r",
"ci:version": "changeset version && pnpm install --lockfile-only",
"lint": "eslint ./ --max-warnings=0",
"lint:debug": "eslint . --debug",
"lint:fix": "pnpm lint --fix"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@jdion/eslint-config": "workspace:*",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.82",
"@types/jest": "^29.5.4",
"chokidar": "^3.5.3",
"concurrently": "^8.2.1",
"eslint": "^8.48.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-tailwindcss": "^3.13.0",
"jest": "^29.6.4",
"ts-jest": "^29.1.1",
"turbo": "^1.10.13",
"typescript": "^5.2.2"
}
}