-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.41 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
{
"name": "cules-coding",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"dev:watch": "next-remote-watch ./src/blogs/catagories/*",
"lint": "eslint .",
"typecheck": "tsc -p tsconfig.json",
"typecheck:watch": "tsc -p tsconfig.json -w",
"createBlog": "tsx ./src/scripts/createBlog.ts",
"createCategory": "tsx ./src/scripts/createCategory.ts"
},
"dependencies": {
"axios": "^0.21.1",
"clsx": "^1.1.1",
"gray-matter": "^4.0.2",
"mongoose": "^5.12.5",
"nanoid": "^3.1.22",
"next": "^12.3.4",
"next-mdx-remote": "^3.0.0",
"next-seo": "^4.24.0",
"prism-react-renderer": "^1.2.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-lazy-load-image-component": "^1.5.4",
"react-masonry-css": "^1.0.16",
"reading-time": "^1.3.0",
"swr": "^0.5.5"
},
"devDependencies": {
"@types/node": "^14.14.37",
"@types/react": "^17.0.3",
"@types/react-lazy-load-image-component": "^1.5.2",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.25.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"next-remote-watch": "^1.0.0",
"prettier": "^2.2.1",
"tsx": "^3.12.7",
"typescript": "^4.2.4"
}
}