-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.81 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": "comic-app",
"author": "Batın Evirgen",
"description": "Online comic reading application",
"version": "0.1.0",
"private": true,
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier": "prettier --write .",
"prepare": "husky install",
"create": "node scripts/create.mjs",
"finalize-guide": "node scripts/finalize-guide.mjs"
},
"dependencies": {
"classnames": "^2.3.2",
"fs-extra": "^11.1.1",
"gray-matter": "^4.0.3",
"lodash.debounce": "^4.0.8",
"mysql2": "^3.2.3",
"next": "13.3.1",
"next-mdx-remote": "^4.4.1",
"next-seo": "^6.0.0",
"nprogress": "^0.2.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-responsive-carousel": "^3.2.23",
"rehype-slug": "^5.1.0",
"remark-toc": "^8.0.1",
"remixicon": "^3.2.0",
"sharp": "^0.32.0",
"unist-util-visit": "^4.1.2"
},
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@tailwindcss/typography": "^0.5.9",
"@types/fs-extra": "^11.0.1",
"@types/gtag.js": "^0.0.12",
"@types/lodash.debounce": "^4.0.7",
"@types/node": "18.16.0",
"@types/nprogress": "^0.2.0",
"@types/react": "18.0.38",
"@types/react-dom": "18.0.11",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"autoprefixer": "^10.4.14",
"eslint": "8.39.0",
"eslint-config-next": "13.3.1",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tailwindcss": "^3.11.0",
"husky": "^8.0.3",
"inquirer": "^9.2.0",
"postcss": "^8.4.23",
"prettier": "^2.8.8",
"slugify": "^1.6.6",
"tailwindcss": "^3.3.1",
"typescript": "5.0.4"
}
}