-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.5 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
{
"private": true,
"author": {
"name": "beansource"
},
"scripts": {
"dev": "next dev -p 1968",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postgres": "docker run -p 5432:5432 -e POSTGRES_PASSWORD=password -d postgres",
"prisma": "prisma db push && prisma generate",
"prisma:gen": "prisma generate"
},
"dependencies": {
"@chakra-ui/icons": "^1.1.7",
"@chakra-ui/react": "^2.2.1",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.0",
"@octokit/graphql": "^4.8.0",
"@octokit/rest": "^18.12.0",
"@prisma/client": "^3.12.0",
"date-fns": "^2.28.0",
"execa": "^6.1.0",
"formik": "^2.2.9",
"framer-motion": "^4.0.3",
"fs-extra": "^10.1.0",
"lucide-react": "^0.61.0",
"next": "^12.1.6",
"next-auth": "^4.3.3",
"ohmyfetch": "^0.4.6",
"pretty-bytes": "^5.6.0",
"prisma": "^3.12.0",
"react": "^18.1.0",
"react-code-blocks": "^0.0.9-0",
"react-dom": "^18.1.0",
"react-query": "^3.34.0",
"swr": "^1.0.1",
"titleize": "^3.0.0"
},
"devDependencies": {
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/node": "^17.0.23",
"@types/react-syntax-highlighter": "^15.5.1",
"changelogen": "^0.0.3",
"eslint": "8.13.0",
"eslint-config-next": "12.1.5",
"plur": "^5.0.0",
"react-icons": "^4.3.1",
"react-syntax-highlighter": "^15.5.0",
"typescript": "^4.5.2"
},
"prisma": {
"schema": "./src/lib/prisma/schema.prisma"
}
}