This repository was archived by the owner on Dec 3, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.35 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.35 KB
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
{
"name": "oce",
"version": "1.0.0",
"license": "MIT",
"author": {
"name": "TextTree"
},
"description": "Open Components Ecosystem",
"homepage": "https://oce-site.netlify.app/",
"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.6.9",
"@headlessui/react": "^1.6.6",
"@heroicons/react": "^1.0.6",
"@prisma/client": "4.2.0",
"axios": "^0.27.2",
"github-markdown-css": "^5.1.0",
"graphql": "^16.6.0",
"highlight.js": "^11.6.0",
"next": "12.2.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-gist": "^1.2.4",
"react-markdown": "^8.0.3",
"react-simply-carousel": "^8.3.5",
"rehype-highlight": "^5.0.2",
"rehype-raw": "^6.1.1",
"rehype-slug": "^5.0.1",
"remark-gfm": "^3.0.1",
"swr": "^1.3.0"
},
"devDependencies": {
"@tailwindcss/aspect-ratio": "^0.4.0",
"autoprefixer": "^10.4.8",
"dotenv-cli": "^6.0.0",
"eslint": "8.22.0",
"eslint-config-next": "12.2.3",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"prisma": "4.2.0",
"tailwindcss": "^3.1.6"
}
}