-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
102 lines (102 loc) · 2.7 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "next-typescript-tailwind-mdx-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "NODE_ENV=production next build",
"postbuild": "NODE_ENV=production next-sitemap",
"start": "next start",
"test": "jest --watch"
},
"dependencies": {
"@emotion/core": "^10.1.1",
"@emotion/styled": "^10.0.27",
"@next/mdx": "^10.0.6",
"@octokit/rest": "^18.3.5",
"@prisma/client": "^2.21.2",
"@types/react-helmet": "^6.1.1",
"axios": "^0.21.1",
"classnames": "^2.3.1",
"dotenv-flow": "^3.2.0",
"emotion": "^10.0.27",
"emotion-server": "^10.0.27",
"lodash": "^4.17.21",
"mdx-prism": "^0.3.1",
"next": "10.0.8",
"next-seo": "^4.19.0",
"next-sitemap": "^1.5.2",
"next-themes": "^0.0.12",
"prism-react-renderer": "^1.2.0",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-helmet": "^6.1.0",
"react-twitter-widgets": "^1.11.0",
"rehype": "^11.0.0",
"rehype-prism": "^0.1.1",
"rehype-react": "^6.2.0",
"rehype-url-inspector": "^2.0.2",
"remark-code-titles": "^0.1.1",
"remark-footnotes": "^3.0.0",
"remark-slug": "^6.0.0",
"to-vfile": "^6.1.0",
"trough": "^1.0.5",
"unified": "^9.2.1",
"uniorg-parse": "^0.1.16",
"uniorg-rehype": "^0.1.17",
"unist-util-visit": "^2.0.3",
"vfile-find-down": "^5.0.1",
"vfile-rename": "^1.1.0",
"vfile-reporter": "^6.0.2"
},
"devDependencies": {
"@babel/plugin-transform-react-jsx": "^7.12.16",
"@emotion/babel-preset-css-prop": "^10.2.1",
"@mdx-js/loader": "^1.6.22",
"@tailwindcss/typography": "^0.4.0",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.27",
"@types/react": "^17.0.2",
"autoprefixer": "^10.3.7",
"babel-jest": "^26.6.3",
"husky": "^5.1.3",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"next-compose-plugins": "^2.2.1",
"postcss": "^8.3.11",
"postcss-nested": "^5.0.3",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.2.1",
"prisma": "^2.21.2",
"react-test-renderer": "^17.0.1",
"rehype-highlight": "^4.1.0",
"rehype-shiki": "^0.0.9",
"tailwindcss": "^2.0.3",
"typescript": "^4.1.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,md}": [
"prettier --write"
],
"src/**/*.{ts,tsx,md,mdx,js}": [
"prettier --write"
]
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": false,
"jsxBracketSameLine": false
}
}