-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.68 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
{
"name": "superprompt",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test": "vitest",
"compile-grammar": "nearleyc ./src/core/grammar.ne -o ./src/core/grammar.ts"
},
"dependencies": {
"@emotion/css": "^11.11.2",
"@mantine/core": "^6.0.15",
"@mantine/form": "^6.0.16",
"@mantine/hooks": "^6.0.15",
"@mantine/modals": "^6.0.17",
"@netlify/functions": "^1.6.0",
"@supabase/supabase-js": "^2.26.0",
"@tabler/icons-react": "^2.23.0",
"date-fns": "^2.30.0",
"dexie": "^3.2.4",
"dexie-react-hooks": "^1.1.6",
"dotenv": "^16.3.1",
"expr-eval": "^2.0.2",
"langchain": "^0.0.102",
"nanoid": "^4.0.2",
"nearley": "^2.20.1",
"node-fetch": "^3.3.1",
"openai": "^4.0.0-beta.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^8.0.7",
"react-router-dom": "^6.14.1",
"slate": "^0.94.1",
"slate-history": "^0.93.0",
"slate-react": "^0.97.1",
"swr": "^2.2.0",
"valtio": "^1.10.6"
},
"devDependencies": {
"@types/lodash": "^4.14.195",
"@types/nearley": "^2.11.2",
"@types/react": "^18.0.37",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"@vitejs/plugin-react": "^4.0.0",
"eslint": "^8.38.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"happy-dom": "^10.5.2",
"typescript": "^5.0.2",
"vite": "^4.3.9",
"vitest": "^0.33.0"
}
}