-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.68 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
63
64
{
"name": "devhacknews",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"next:lint": "next lint",
"lint": "tsc --noEmit && eslint . --ext .ts --max-warnings=0",
"lint:fix": "yarn lint --fix",
"prettier:format": "pretty-quick --pattern '**/*.{ts, tsx}' --verbose",
"postinstall": "prisma generate",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.(ts|tsx)": [
"yarn lint:fix",
"yarn prettier:format --staged"
]
},
"dependencies": {
"@bytemd/plugin-breaks": "^1.18.0",
"@bytemd/plugin-gemoji": "^1.18.0",
"@bytemd/plugin-gfm": "^1.18.0",
"@bytemd/plugin-highlight": "^1.18.0",
"@bytemd/plugin-highlight-ssr": "^1.18.0",
"@bytemd/plugin-mermaid": "^1.18.0",
"@bytemd/react": "^1.18.0",
"@next-auth/prisma-adapter": "^1.0.5",
"@next/font": "13.0.7",
"@prisma/client": "^4.7.1",
"bytemd": "^1.18.0",
"github-markdown-css": "^5.1.0",
"next": "13.0.7",
"next-auth": "^4.18.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"sharp": "^0.31.3"
},
"devDependencies": {
"@types/node": "^18.11.17",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"autoprefixer": "^10.4.13",
"eslint": "^8.30.0",
"eslint-config-next": "^13.0.7",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"postcss": "^8.4.20",
"prettier": "^2.8.3",
"pretty-quick": "^3.1.3",
"prisma": "^4.7.1",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.4"
}
}