forked from shadowwalker/next-pwa
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
44 lines (44 loc) · 1.77 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": "@ducanh2912/next-pwa-project",
"type": "module",
"license": "MIT",
"private": true,
"packageManager": "pnpm@9.1.4",
"workspaces": ["docs", "packages/**", "examples/**", "!**/.next", "next-pwa-e2e-test"],
"scripts": {
"build": "FORCE_COLOR=1 turbo run build --filter='./packages/*'",
"code-check": "biome check --max-diagnostics=150 --log-kind=compact .",
"code-check:apply": "pnpm code-check --apply",
"deps": "node ncu.js",
"dev": "FORCE_COLOR=1 turbo run dev --parallel --filter='./packages/*'",
"docs:build": "FORCE_COLOR=1 turbo run build --filter='./docs'",
"nochange": "changeset --empty",
"examples:build": "FORCE_COLOR=1 turbo run build --filter='./examples/*' --concurrency=50%",
"examples:dev": "FORCE_COLOR=1 turbo run dev --parallel --filter='./examples/*'",
"format": "biome format --max-diagnostics=100 --log-kind=compact .",
"format:write": "pnpm format --write",
"lint": "biome lint --max-diagnostics=100 --log-kind=compact .",
"lint:fix": "pnpm lint --apply",
"publish-packages": "pnpm typecheck && pnpm build && changeset publish",
"test": "FORCE_COLOR=1 turbo run test --filter='./packages/*'",
"typecheck": "FORCE_COLOR=1 turbo run typecheck"
},
"devDependencies": {
"@biomejs/biome": "1.9.1",
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.8",
"@ducanh2912/next-pwa": "workspace:*",
"@types/node": "22.5.5",
"@types/shell-quote": "1.7.5",
"@typescript-eslint/eslint-plugin": "8.6.0",
"@typescript-eslint/parser": "8.6.0",
"fast-glob": "3.3.2",
"jest": "29.7.0",
"npm-check-updates": "17.1.2",
"rimraf": "6.0.1",
"shell-quote": "1.8.1",
"tslib": "2.7.0",
"turbo": "2.1.2",
"typescript": "5.7.0-dev.20240918"
}
}