-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.32 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 3.32 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
{
"name": "teamcopilot",
"version": "0.3.4",
"description": "A shared AI Agent for Teams",
"homepage": "https://teamcopilot.ai",
"repository": {
"type": "git",
"url": "https://github.com/rishabhpoddar/teamcopilot.git"
},
"main": "dist/index.js",
"bin": {
"teamcopilot": "bin/teamcopilot.js"
},
"files": [
"bin",
"dist",
"prisma",
".env.example",
"README.md"
],
"engines": {
"node": ">=20"
},
"scripts": {
"clean": "rm -rf dist",
"check:unused:functions": "tsc --noEmit --noUnusedLocals --noUnusedParameters",
"check:unused:exports": "ts-prune -e -p tsconfig.json -i \"^src/types/shared/|^prisma/generated/|^src/index.ts:[0-9]+ - createApp \\(used in module\\)$|^src/utils/secret-contract-validation.ts:45 - extractReferencedWorkflowSecrets \\(used in module\\)$|^src/utils/secret-contract-validation.ts:57 - extractReferencedSkillSecrets \\(used in module\\)$|^src/utils/secret-contract-validation.ts:158 - parseSkillRequiredSecrets \\(used in module\\)$\"",
"check:unused": "npm run check:unused:functions && npm run check:unused:exports",
"build": "npm run clean && npm run check:unused && cd frontend && npm run build && cd .. && prisma generate --schema prisma/schema.prisma && tsc && node scripts/copy-runtime-assets.mjs",
"start": "node dist/index.js",
"dev": "(rm -rf dist || true) && concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "ts-node-dev src/index.ts",
"dev:frontend": "cd frontend && npm run dev",
"create-user": "ts-node src/create-user.ts",
"delete-user": "ts-node src/delete-user.ts",
"change-user-role": "ts-node src/change-user-role.ts",
"reset-password": "ts-node src/reset-password.ts",
"rotate-jwt-secret": "ts-node src/rotate-jwt-secret.ts",
"prisma": "ts-node src/scripts/prisma-workspace.ts",
"prisma:migrate:dev": "npm run prisma -- migrate dev",
"prisma:migrate:reset": "npm run prisma -- migrate reset",
"prisma:migrate:deploy": "npm run prisma -- migrate deploy",
"prisma:studio": "npm run prisma -- studio",
"postinstall": "prisma generate --schema prisma/schema.prisma",
"test": "node -r ts-node/register tests/run-tests.ts",
"prepublishOnly": "npm run build"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@opencode-ai/sdk": "1.3.7",
"@prisma/client": "^6.0.1",
"@slack/web-api": "^7.8.0",
"@supabase/supabase-js": "^2.47.8",
"@types/bcryptjs": "^2.4.6",
"@types/cookie-parser": "^1.4.8",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.9",
"@types/multer": "^2.0.0",
"@types/node-cron": "^3.0.11",
"axios": "^1.7.9",
"bcryptjs": "^3.0.3",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"cron": "^4.4.0",
"diff": "^8.0.4",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"ignore": "^7.0.5",
"jsonwebtoken": "^9.0.2",
"multer": "^2.1.0",
"node-cron": "^3.0.3",
"openai": "^4.95.1",
"opencode-ai": "1.3.7",
"prisma": "^6.0.1",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"twitter-api-v2": "^1.22.0",
"typescript": "^5.7.2",
"uuid": "^11.1.0"
},
"devDependencies": {
"@types/supertest": "^7.2.0",
"concurrently": "^9.2.1",
"supertest": "^7.2.2",
"ts-prune": "^0.10.3"
}
}