-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
50 lines (50 loc) · 1.12 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
{
"name": "llm_alchemy",
"version": "0.1.0",
"private": true,
"dependencies": {
"@chakra-ui/icons": "^2.0.19",
"@chakra-ui/react": "^2.6.1",
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@netlify/functions": "^1.6.0",
"@prisma/client": "^4.14.1",
"framer-motion": "^10.12.12",
"openai": "^3.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "5.0.1",
"react-sweetalert2": "^0.5.2",
"request": "^2.88.2",
"stripe": "^12.6.0",
"sweetalert2-react-content": "^5.0.7",
"tslib": "^2.5.2",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "react-scripts start",
"functions": "netlify functions:serve",
"build": "react-scripts build && prisma generate"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"prisma": "^4.14.1"
}
}