-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.74 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
58
59
60
61
62
{
"name": "my-blog",
"version": "1.0.0",
"description": "",
"keywords": [],
"license": "MIT",
"author": "",
"devDependencies": {
"@types/node": "^18.15.11",
"@types/react": "18.0.33",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"babel-plugin-styled-components": "^2.1.1",
"eslint": "8.39.0",
"eslint-config-next": "13.3.2",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.28.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.1",
"prisma": "4.13.0",
"styled-components": "^5.3.10",
"terser-webpack-plugin": "^5.3.9",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
},
"dependencies": {
"@apollo/client": "^3.7.13",
"@emotion/styled": "^11.11.0",
"@mantine/core": "^6.0.10",
"@mantine/form": "^6.0.10",
"@pothos/core": "^3.29.0",
"@pothos/plugin-prisma": "3.47.2",
"@prisma/client": "4.13.0",
"@vercel/og": "^0.5.8",
"framer-motion": "^10.15.1",
"graphql": "^16.6.0",
"graphql-scalars": "1.21.3",
"graphql-yoga": "3.8.0",
"next": "^13.4.0",
"next-auth": "^4.22.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.8.0",
"react-markdown": "^8.0.6",
"vercel": "^31.2.3"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"scripts": {
"build": "run-s build:wasm build:prisma build:next",
"build:prisma": "prisma generate",
"build:next": "next build",
"dev": "next dev",
"start": "next start",
"lint": "next lint",
"fmt": "prettier --write './**/*.tsx'",
"build:wasm": "cd markdown-parser && wasm-pack build --target web"
}
}