-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
55 lines (55 loc) · 1.51 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
{
"name": "opencomponents-io-website",
"version": "1.0.0",
"license": "MIT",
"author": {
"name": "TextTree"
},
"description": "Open Components are reusable building blocks for Bible technology",
"homepage": "https://opencomponents.io/",
"private": true,
"scripts": {
"dev": "next dev",
"build": "npx prisma migrate deploy && next build",
"start": "next start",
"lint": "next lint",
"seed": "dotenv -e .env.local -- npx prisma migrate dev"
},
"dependencies": {
"@apollo/client": "^3.8.9",
"@headlessui/react": "^1.7.18",
"@heroicons/react": "^2.1.1",
"@prisma/client": "4.2.0",
"@sendgrid/mail": "^7.7.0",
"axios": "^1.6.5",
"cookies-next": "^2.1.2",
"github-markdown-css": "^5.5.0",
"graphql": "^16.8.1",
"highlight.js": "^11.9.0",
"next": "12.2.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-gist": "^1.2.4",
"react-google-forms-hooks": "^1.2.4",
"react-markdown": "^8.0.7",
"react-simply-carousel": "^8.3.5",
"rehype-highlight": "^5.0.2",
"rehype-raw": "^6.1.1",
"rehype-slug": "^5.1.0",
"remark-gfm": "^3.0.1",
"swr": "^1.3.0"
},
"devDependencies": {
"@tailwindcss/aspect-ratio": "^0.4.2",
"autoprefixer": "^10.4.16",
"dotenv-cli": "^6.0.0",
"eslint": "8.22.0",
"eslint-config-next": "12.2.3",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"postcss": "^8.4.33",
"prettier": "^2.8.8",
"prisma": "4.2.0",
"tailwindcss": "^3.4.1"
}
}