-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 3.07 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
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
{
"name": "mfng-ai-demo",
"version": "1.0.0",
"private": true,
"description": "MFNG AI SDK Generative UI Demo",
"license": "MIT",
"author": "Hendrik Liebau <[email protected]>",
"type": "module",
"scripts": {
"build": "webpack --mode production",
"build:dev": "webpack --mode development",
"clean": "npm run compile:clean && rimraf -v {dist,lib,.turbo} node_modules/.cache/turbo",
"compile": "tsc --build",
"compile:clean": "tsc --build --clean",
"compile:watch": "tsc --build --watch --preserveWatchOutput",
"predeploy": "cdk bootstrap --app 'tsx cdk/app.ts'",
"deploy": "cdk diff --app 'tsx cdk/app.ts' && cdk deploy --app 'tsx cdk/app.ts' --all",
"deploy:preview": "cdk diff --app 'tsx cdk/app-preview.ts' && cdk deploy --app 'tsx cdk/app-preview.ts' --all",
"dev": "turbo watch:dev start-dev-server",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint": "eslint .",
"start": "turbo watch start-dev-server",
"start-dev-server": "tsx watch --clear-screen=false --enable-source-maps --inspect dev-server/run.ts",
"watch": "webpack --mode production --watch",
"watch:dev": "webpack --mode development --watch"
},
"dependencies": {
"@ai-sdk/openai": "^0.0.9",
"@mfng/core": "^4.1.2",
"@upstash/ratelimit": "^1.0.1",
"@upstash/redis": "^1.28.4",
"ai": "^3.1.1",
"clsx": "^1.2.1",
"openai": "^4.40.1",
"react": "0.0.0-experimental-73bcdfbae5-20240502",
"react-dom": "0.0.0-experimental-73bcdfbae5-20240502",
"react-markdown": "^9.0.1",
"react-server-dom-webpack": "0.0.0-experimental-73bcdfbae5-20240502",
"react-textarea-autosize": "^8.5.3",
"server-only": "^0.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@hono/node-server": "^1.8.2",
"@mfng/webpack-rsc": "^4.0.1",
"@swc/core": "^1.3.22",
"@types/aws-lambda": "^8.10.136",
"@types/node": "^20.11.26",
"@types/react": "^18.2.61",
"@types/react-dom": "^18.2.19",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"ajv": "^8.12.0",
"autoprefixer": "^10.4.14",
"aws-cdk": "^2.132.1",
"aws-cdk-lib": "^2.132.1",
"constructs": "^10.3.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^6.7.3",
"cssnano": "^6.1.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "npm:eslint-plugin-i@^2.29.0",
"eslint-plugin-markdown": "^3.0.1",
"filenamify": "^6.0.0",
"hono": "^4.1.0",
"mini-css-extract-plugin": "^2.7.5",
"postcss": "^8.4.21",
"postcss-loader": "^7.0.2",
"prettier": "^2.8.7",
"prettier-plugin-tailwindcss": "^0.2.4",
"resolve-typescript-plugin": "^2.0.0",
"rimraf": "^4.4.1",
"source-map-loader": "^4.0.1",
"swc-loader": "^0.2.6",
"tailwindcss": "^3.2.7",
"talkback": "^4.0.0",
"tsx": "^4.7.1",
"turbo": "~1.11.3",
"typescript": "^5.4.2",
"webpack": "^5.77.0",
"webpack-cli": "^5.0.1",
"webpack-manifest-plugin": "^5.0.0"
}
}