-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.74 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.74 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
{
"name": "chipgpt",
"version": "1.0.0",
"private": true,
"description": "",
"main": "src/index.ts",
"engines": {
"node": ">=22"
},
"scripts": {
"docker:up": "docker compose up -d postgres",
"build": "next build",
"build:mcp": "tsc -p tsconfig.mcp-server.json",
"build:ui": "node src/ui/esbuild.config.ts",
"clean": "rm -rf node_modules .next .open-next",
"deploy:development": "sst deploy --stage development",
"deploy:production": "sst deploy --stage production",
"dev": "next dev --port 3000",
"dev:mcp": "nodemon --exec \"ts-node -P ./tsconfig.mcp-server.json\" mcp-server.ts",
"dev:ui": "node src/ui/esbuild.config.ts --watch",
"lint": "next lint",
"sso": "aws sso login --sso-session=chipgpt",
"start": "next start",
"test": "echo \"Error: no test specified\" && exit 1",
"migrate": "sequelize-cli db:migrate",
"migrate:status": "sequelize-cli db:migrate:status",
"migrate:undo": "sequelize-cli db:migrate:undo",
"migration:create": "sequelize-cli migration:generate --name initial --models-path src/server/models"
},
"author": "",
"license": "ISC",
"dependencies": {
"@auth/sequelize-adapter": "^2.10.0",
"@aws-sdk/client-dynamodb": "^3.844.0",
"@aws-sdk/lib-dynamodb": "^3.844.0",
"@hookform/resolvers": "^3.10.0",
"@modelcontextprotocol/sdk": "^1.20.0",
"@node-oauth/oauth2-server": "^5.2.0",
"@tanstack/react-query": "^5.66.8",
"aws-lambda": "^1.0.7",
"axios": "^1.7.8",
"cors": "^2.8.5",
"date-fns": "^4.1.0",
"express": "^5.1.0",
"express-rate-limit": "^8.0.1",
"lodash": "^4.17.21",
"lucide-react": "^0.525.0",
"mailgun.js": "^12.0.3",
"next-auth": "^5.0.0-beta.30",
"pg": "^8.13.1",
"posthog-js": "^1.256.2",
"posthog-node": "^5.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.54.2",
"recharts": "^2.15.3",
"sequelize": "^6.37.5",
"sharp": "^0.33.5",
"ssrfcheck": "^1.2.0",
"sst": "3.9.27",
"stripe": "^18.3.0",
"tailwind-merge": "^3.0.1",
"tailwindcss-animate": "^1.0.7",
"uuid": "^11.0.3",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.146",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/lodash": "^4.17.13",
"@types/node": "^22.10.1",
"@types/pg": "^8.11.10",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/uuid": "^10.0.0",
"dotenv": "^16.4.7",
"esbuild": "0.25.11",
"eslint": "^9.16.0",
"eslint-config-next": "^15.5.6",
"next": "^15.5.6",
"nodemon": "^3.1.10",
"postcss": "^8.4.49",
"sequelize-cli": "^6.6.2",
"tailwindcss": "^3.4.17",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}