forked from Telegram-Mini-Apps/telegram-apps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"private": true,
"scripts": {
"ci:docs:build": "pnpm run docs:build",
"ci:packages:build": "pnpm run packages:build",
"ci:packages:install-deps": "pnpm i",
"ci:packages:lint": "pnpm run packages:lint",
"ci:packages:test": "vitest --run",
"ci:packages:typecheck": "pnpm run packages:typecheck",
"commit": "git cz",
"dev": "turbo run dev",
"docs:build": "turbo run build --filter=\"./apps/docs\"",
"docs:dev": "turbo run dev --filter=\"./apps/docs\"",
"packages:build": "turbo run build --filter=\"./packages/*\"",
"packages:lint": "turbo run lint --filter=\"./packages/*\"",
"packages:lint:fix": "turbo run lint:fix --filter=\"./packages/*\"",
"packages:test": "vitest",
"packages:typecheck": "turbo run typecheck --filter=\"./packages/*\"",
"prepare": "husky"
},
"devDependencies": {
"@changesets/cli": "^2.27.5",
"@eslint/js": "^9.2.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@turbo/gen": "^1.13.3",
"@types/eslint__js": "^8.42.3",
"@vitest/coverage-v8": "^1.6.0",
"@vitest/ui": "^1.6.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.3.0",
"happy-dom": "^12.10.3",
"husky": "^9.0.11",
"rimraf": "^5.0.5",
"tslib": "^2.6.2",
"turbo": "^1.13.3",
"typescript": "5.4.5",
"typescript-eslint": "^8.0.0-alpha.20",
"vite": "^5.2.11",
"vite-plugin-dts": "^3.9.1",
"vite-plugin-solid": "^2.10.2",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.6.0"
},
"type": "module",
"packageManager": "[email protected]",
"name": "monorepo",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && npx cz --hook || true"
}
}
}