-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.99 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
{
"name": "scenarios",
"description": "Scenarios is a game where you try to guess what your friends would do in different AI generated situations. It's a fun way to get to know your friends better and see how they think.",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"supabase:gen-types": "supabase gen types typescript --project-id \"dmjwwnpltjvsevmfujec\" --schema public | tee src/types/supabase.ts ",
"postsupabase:gen-types": "prettier --write src/types/supabase.ts",
"supabase:deploy-functions": "npm run supabase:type-check && supabase functions deploy",
"supabase:deploy-secrets": "supabase secrets set --env-file ./.env.local",
"supabase:type-check": "npm run --prefix supabase type-check",
"typecheck": "tsc --noEmit && npm run supabase:type-check",
"script:build": "tsc -p ./src/scripts",
"script:test-image-gen": "npm run script:build && node ./src/scripts/out/image-gen-demo.js",
"script:test-function-calling": "npm run script:build && node ./src/scripts/out/function-calling-demo.js",
"script:test-function-calling-edge": "npm run script:build && node ./src/scripts/out/function-calling-demo-edge.js",
"script:test-eager-scenarios": "npm run script:build && node ./src/scripts/out/eager-scenarios.js",
"script:test-eager-scenarios-edge": "npm run script:build && node ./src/scripts/out/eager-scenarios-edge.js",
"storybook": "storybook dev -p 6006 --no-open",
"build-storybook": "storybook build"
},
"dependencies": {
"@chakra-ui/next-js": "^2.1.5",
"@chakra-ui/react": "^2.8.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@supabase/auth-helpers-nextjs": "^0.7.4",
"@supabase/supabase-js": "^2.32.0",
"ai": "^2.2.0",
"framer-motion": "^10.16.0",
"next": "13.4.16",
"openai-edge": "^1.2.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.10.1",
"react-markdown": "^8.0.7",
"remark-gfm": "^3.0.1",
"server-only": "^0.0.1"
},
"devDependencies": {
"@huggingface/inference": "^2.6.1",
"eslint": "8.47.0",
"eslint-config-next": "13.4.16",
"typescript": "5.1.6",
"@eliasm307/config": "^0.31.0",
"@types/node": "20.3.2",
"@types/react": "18.2.20",
"@types/react-dom": "18.2.7",
"@storybook/addon-essentials": "^7.3.1",
"@storybook/addon-interactions": "^7.3.1",
"@storybook/addon-links": "^7.3.1",
"@storybook/blocks": "^7.3.1",
"@storybook/nextjs": "^7.3.1",
"@storybook/react": "^7.3.1",
"@storybook/testing-library": "^0.2.0",
"@types/json-schema": "^7.0.12",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"babel-plugin-react-require": "^4.0.1",
"dotenv": "^16.3.1",
"eslint-plugin-storybook": "^0.6.13",
"openai": "^4.0.0",
"react-select": "^5.7.4",
"react-world-flags": "^1.5.1",
"storybook": "^7.3.1",
"supabase": "^1.86.1"
}
}