-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.3 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "int-tech-blog-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint src --ext .js,.ts,.tsx --fix",
"format": "prettier --write",
"typecheck": "tsc -p ./tsconfig.json",
"test": "jest",
"prepare": "husky install",
"updates": "npx npm-check-updates --interactive",
"updates:doctor": "npx npm-check-updates --doctor"
},
"dependencies": {
"@fontsource/lora": "^4.5.6",
"@fontsource/manrope": "^4.5.6",
"@mdx-js/loader": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"@next/mdx": "^12.1.1",
"@tailwindcss/typography": "^0.4.1",
"clsx": "^1.1.1",
"glob": "^7.2.0",
"gray-matter": "^4.0.3",
"lodash": "^4.17.21",
"next": "^12.1.1",
"next-i18next": "^10.5.0",
"next-mdx-remote": "^3.0.8",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-feather": "^2.0.9",
"remark-prism": "^1.3.6",
"sass": "^1.49.9",
"sharp": "^0.30.3",
"tailwindcss": "^2.2.19"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.3",
"@testing-library/react": "^12.1.4",
"@types/glob": "^7.2.0",
"@types/lodash": "^4.14.180",
"@types/mdx-js__react": "^1.5.5",
"@types/node": "^14.18.12",
"@types/react": "^17.0.43",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"autoprefixer": "^10.4.4",
"eslint": "^8.12.0",
"eslint-config-next": "^12.1.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-tailwindcss": "^1.17.2",
"eslint-plugin-testing-library": "^5.1.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"jest-extended": "^2.0.0",
"lint-staged": "^12.3.7",
"next-router-mock": "^0.6.5",
"postcss": "^8.4.12",
"postcss-import": "^14.1.0",
"prettier": "^2.6.1",
"typescript": "^4.6.3"
},
"engines": {
"node": "14.x"
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix",
"*.{json,md,mdx,yml}": "prettier --write"
}
}