-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
77 lines (77 loc) · 2.23 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
{
"name": "blog-nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"typecheck": "tsc --project tsconfig.json --noEmit",
"lint": "eslint src --max-warnings=0",
"test": "jest",
"test:watch": "yarn test --watch",
"test:coverage": "yarn test --coverage --detectOpenHandles",
"test:coverage:text": "yarn test --coverageReporters='text-summary'"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*": [
"yarn lint --fix",
"yarn test --findRelatedTests --bail --passWithNoTests"
]
},
"dependencies": {
"@openlab/vercel-netlify-cms-github": "^1.1.1",
"@phosphor-icons/react": "^2.0.9",
"@types/node": "20.10.0",
"@types/react": "18.2.13",
"@types/react-dom": "18.2.5",
"autoprefixer": "10.4.14",
"contentlayer": "^0.3.2",
"eslint-config-next": "13.4.7",
"next": "13.4.7",
"next-compose-plugins": "^2.2.1",
"next-contentlayer": "^0.3.2",
"next-pwa": "^5.6.0",
"postcss": "8.4.31",
"react": "18.2.0",
"react-dom": "18.2.0",
"reading-time": "^1.5.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-pretty-code": "^0.9.11",
"rehype-slug": "^5.1.0",
"remark-gfm": "^3.0.1",
"shiki": "^0.14.3",
"tailwindcss": "3.3.2",
"typescript": "5.3.2"
},
"devDependencies": {
"@swc/core": "^1.3.66",
"@swc/jest": "^0.2.29",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.1",
"@types/mdx": "^2.0.5",
"@types/next-pwa": "^5.6.4",
"@types/testing-library__jest-dom": "^5.14.6",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.0",
"eslint": "8.43.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import-helpers": "^1.3.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lint-staged": "^15.1.0",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.3.0",
"tailwind-styled-components": "^2.2.0"
}
}