forked from joelhooks/next-typescript-tailwind-mdx-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.01 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
{
"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",
"@headlessui/react": "^0.2.0",
"@next/mdx": "^10.0.1",
"dotenv-flow": "^3.2.0",
"emotion": "^11.0.0",
"emotion-server": "^10.0.27",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"mdx-prism": "^0.3.1",
"next": "10.0.1",
"next-mdx-enhanced": "^4.0.0",
"next-seo": "^4.15.1",
"next-sitemap": "^1.2.26",
"prettier": "^2.1.2",
"react": "17.0.1",
"react-dom": "17.0.1",
"rehype": "^11.0.0",
"remark-code-titles": "^0.1.1",
"remark-footnotes": "^3.0.0",
"remark-slug": "^6.0.0"
},
"devDependencies": {
"@babel/plugin-transform-react-jsx": "^7.12.5",
"@emotion/babel-preset-css-prop": "^10.2.1",
"@tailwindcss/typography": "^0.2.0",
"@testing-library/jest-dom": "^5.11.5",
"@testing-library/react": "^11.1.1",
"@types/node": "^14.14.7",
"@types/react": "^16.9.56",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"babel-jest": "^26.6.3",
"eslint": "^7.14.0",
"jest": "^26.6.3",
"next-compose-plugins": "^2.2.1",
"postcss-nested": "^5.0.1",
"postcss-preset-env": "^6.7.0",
"react-test-renderer": "^17.0.1",
"tailwindcss": "^2.0.1",
"typescript": "^4.1.2"
},
"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
}
}