-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.45 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": "@gogaille/blog",
"version": "1.0.0",
"license": "MIT",
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"typescript:check": "tsc --noEmit",
"format:fix": "prettier --write '**/*.{js,jsx,ts,tsx,json,html,css,md}'",
"format:check": "prettier --check '**/*.{js,jsx,ts,tsx,json,html,css,md}'",
"eslint:check": "eslint 'src/**/*' 'pages/**/*'"
},
"dependencies": {
"classnames": "^2.3.1",
"date-fns": "^2.21.1",
"feed": "^4.2.2",
"glob": "^7.1.6",
"highlight.js": "^10.7.2",
"next": "^10.2.0",
"next-mdx": "^0.6.0",
"next-seo": "^4.24.0",
"preact": "^10.5.13",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"reading-time": "^1.3.0",
"rehype-highlight": "^4.1.0",
"typescript": "^4.2.4",
"zod": "3.0.0-alpha.4"
},
"devDependencies": {
"@tailwindcss/typography": "^0.4.0",
"@types/classnames": "^2.3.1",
"@types/jest": "^26.0.23",
"@types/node": "^15.0.1",
"@types/react": "^17.0.4",
"@types/react-dom": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"autoprefixer": "^10.2.5",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"postcss": "^8.2.13",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.2.1",
"tailwindcss": "^2.1.2"
}
}