-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.32 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": "gpap.blog",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test-dev": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
"lint": "next lint --dir . --ext mdx --ext ts --ext tsx --ext js --ext jsx",
"lint-types": "tsc --noemit",
"generate-icons": "ts-node scripts/generate-icons.ts",
"watch-posts": "next-remote-watch ./content",
"prepare": "husky install",
"postinstall": "patch-package"
},
"dependencies": {
"contentlayer": "^0.2.6",
"date-fns": "^2.28.0",
"mdx-bundler": "^9.0.1",
"next": "^12.2.2",
"next-contentlayer": "^0.2.6",
"next-seo": "^5.4.0",
"next-themes": "^0.2.0",
"patch-package": "^6.4.7",
"prism-react-renderer": "^1.3.5",
"psn-api": "^2.7.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"reading-time": "^1.5.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-preset-minify": "^6.0.0",
"rehype-pretty-code": "^0.3.2",
"rehype-slug": "^5.0.1",
"remark-gfm": "^3.0.1",
"remark-mdx-images": "^1.0.3",
"remark-unwrap-images": "^3.0.1",
"shiki": "^0.10.1",
"swr": "^1.3.0"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@types/gtag.js": "^0.0.10",
"@types/jest": "^28.1.4",
"@types/node": "^18.0.3",
"@types/react": "^18.0.15",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"autoprefixer": "^10.4.7",
"eslint": "^8.19.0",
"eslint-config-next": "^12.2.2",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-mdx": "^2.0.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-security": "^1.5.0",
"eslint-plugin-sonarjs": "^0.13.0",
"favicons": "^7.0.0-beta.4",
"husky": "^8.0.1",
"jest": "^28.1.2",
"lint-staged": "^13.0.3",
"next-remote-watch": "^1.0.0",
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"prettier-eslint": "^15.0.1",
"prettier-plugin-organize-imports": "^3.0.0",
"tailwindcss": "^3.1.6",
"ts-jest": "^28.0.5",
"typescript": "^4.7.4"
},
"engines": {
"npm": ">=8"
}
}