-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.62 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
{
"name": "pyjama",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix vite:build",
"dev": "remix vite:dev",
"test": "vitest",
"dev:css": "tailwindcss -w -i app/css/index.css -o app/css/tailwind.css",
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"preview": "vite preview",
"typecheck": "tsc"
},
"dependencies": {
"@instructor-ai/instructor": "^0.0.7",
"@remix-run/css-bundle": "^2.7.2",
"@remix-run/node": "^2.7.2",
"@remix-run/react": "^2.7.2",
"clsx": "^2.1.0",
"highlight.js": "^11.9.0",
"html-react-parser": "^5.1.8",
"lodash": "^4.17.21",
"markdown-it": "^14.0.0",
"openai": "^4.28.4",
"pretty-print-json": "^3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^9.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@remix-run/dev": "^2.7.2",
"@types/lodash": "^4.17.0",
"@types/markdown-it": "^13.0.7",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"autoprefixer": "^10.4.17",
"daisyui": "^4.7.2",
"eslint": "^8.38.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"typescript": "^5.1.6",
"vite": "^5.1.0",
"vite-tsconfig-paths": "^4.2.1",
"vtest": "^1.1.0"
},
"engines": {
"node": ">=18.0.0"
}
}