-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 993 Bytes
/
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
{
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"db:push": "prisma db push --schema=./prisma/schema.prisma",
"db:generate": "prisma generate --schema=./prisma/schema.prisma",
"db:seed": "ts-node --transpile-only --project=./tsconfig.json ./prisma/seed.ts"
},
"dependencies": {
"@prisma/client": "^4.8.0",
"classnames": "2.3.1",
"date-fns": "2.28.0",
"gray-matter": "4.0.3",
"jsdom": "^20.0.3",
"lodash": "^4.17.21",
"next": "^13.1.1",
"node-fetch": "^3.3.0",
"pako": "^2.0.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remark": "14.0.2",
"remark-html": "15.0.1"
},
"devDependencies": {
"@types/jsdom": "^20.0.1",
"@types/lodash": "^4.14.191",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"autoprefixer": "^10.4.0",
"postcss": "^8.4.4",
"prisma": "^4.8.0",
"tailwindcss": "^3.0.1",
"typescript": "^4.9.4"
}
}