-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.04 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.04 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "sdk-monorepo",
"version": "0.0.0",
"private": true,
"license": "Apache-2.0",
"author": "Gigadrive <business@gigadrivegroup.com> (https://gigadrive.de)",
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"build:no-cache": "turbo run build --force",
"ci:publish": "changeset publish",
"ci:version": "changeset version && pnpm install --no-frozen-lockfile",
"clean": "turbo run clean",
"dev": "turbo run dev",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint --cache --ext .ts,.tsx,.js,.jsx .",
"lint:fix": "eslint --cache --fix --ext .ts,.tsx,.js,.jsx .",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"typecheck": "turbo run typecheck"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^9.39.4",
"@local/tsup": "workspace:*",
"@svitejs/changesets-changelog-github-compact": "^1.2.0",
"@types/node": "^22.19.17",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"@vitest/coverage-istanbul": "3.2.4",
"dotenv": "^16.6.1",
"esbuild": "^0.28.0",
"eslint": "^9.39.4",
"eslint-config-love": "^120.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-n": "^17.24.0",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-storybook": "^10.3.4",
"glob": "^11.1.0",
"globals": "^16.5.0",
"minimatch": "^10.2.5",
"prettier": "^3.8.1",
"prettier-plugin-organize-imports": "^4.3.0",
"prettier-plugin-packagejson": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.7.0",
"tsup": "^8.5.1",
"turbo": "^2.9.3",
"typescript-eslint": "^8.58.0",
"vite": "^7.3.1",
"vitest": "^3.2.4"
},
"packageManager": "pnpm@10.33.0"
}