forked from trycompai/comp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.28 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.28 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "comp",
"version": "1.50.0",
"devDependencies": {
"@azure/core-http": "^3.0.5",
"@azure/core-rest-pipeline": "^1.21.0",
"@azure/core-tracing": "^1.2.0",
"@azure/identity": "^4.10.0",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@hookform/resolvers": "^5.1.1",
"@number-flow/react": "^0.5.9",
"@prisma/adapter-pg": "6.10.1",
"@react-email/components": "^0.0.41",
"@react-email/render": "^1.1.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.3",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.3",
"@types/bun": "^1.2.15",
"@types/d3": "^7.4.3",
"@types/lodash": "^4.17.17",
"@types/react": "^19.1.6",
"@types/react-dom": "^19.1.1",
"ai": "^5.0.0",
"better-auth": "^1.2.8",
"concurrently": "^9.1.2",
"d3": "^7.9.0",
"date-fns": "^4.1.0",
"dayjs": "^1.11.13",
"execa": "^9.0.0",
"gitmoji": "^1.1.1",
"gray-matter": "^4.0.3",
"husky": "^9.1.7",
"prettier": "^3.5.3",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-tailwindcss": "^0.6.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-email": "^4.0.15",
"react-hook-form": "^7.61.1",
"semantic-release": "^24.2.8",
"semantic-release-discord": "^1.2.0",
"semantic-release-discord-notifier": "^1.0.11",
"sharp": "^0.34.2",
"syncpack": "^13.0.4",
"tsup": "^8.5.0",
"turbo": "^2.5.4",
"typescript": "^5.8.3",
"use-debounce": "^10.0.4"
},
"engines": {
"node": ">=18"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md}": "prettier --write"
},
"packageManager": "bun@1.1.36",
"private": true,
"scripts": {
"build": "turbo build",
"check:env": "node scripts/check-unused-env.js",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo clean",
"deploy:trigger-prod": "npx trigger.dev@4.0.0 deploy",
"deps:check": "syncpack list-mismatches",
"deps:dedupe": "syncpack fix-mismatches && bun install",
"deps:fix": "syncpack fix-mismatches",
"deps:lint": "syncpack lint",
"deps:update": "syncpack update",
"deps:upgrade": "syncpack update && bun install",
"dev": "turbo dev --parallel",
"docker:clean": "bun run -F @comp/db docker:clean",
"docker:down": "bun run -F @comp/db docker:down",
"docker:up": "bun run -F @comp/db docker:up",
"format": "prettier --write .",
"lint": "turbo lint && syncpack lint",
"prepare": "husky",
"test": "turbo test --parallel",
"test:release": "node scripts/test-release.js",
"typecheck": "turbo typecheck",
"typecheck:ci": "turbo typecheck --filter={apps/**} --filter={packages/**} --filter=!@trycompai/integrations --filter=!@trycompai/ui"
},
"workspaces": [
"apps/*",
"packages/analytics",
"packages/email",
"packages/integrations",
"packages/kv",
"packages/tsconfig",
"packages/ui",
"packages/utils"
],
"dependencies": {
"@types/cheerio": "^1.0.0",
"@types/react-syntax-highlighter": "^15.5.13",
"cheerio": "^1.1.2",
"react-syntax-highlighter": "^15.6.6",
"zod": "^3.25.76"
}
}