-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.57 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
{
"name": "mintter.com",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "NODE_ENV=production next build",
"postbuild": "NODE_ENV=production next-sitemap",
"export": "next export",
"start": "next start",
"test": "jest --watch"
},
"dependencies": {
"@47ng/check-env": "2.0.1",
"dotenv-flow": "3.2.0",
"husky": "4.3.0",
"lint-staged": "10.4.0",
"mdx-prism": "0.3.1",
"next": "9.5.4",
"next-mdx-enhanced": "4.0.0",
"next-seo": "4.11.0",
"next-sitemap": "1.2.4",
"prettier": "2.1.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"reading-time": "1.2.0",
"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.10.4",
"@tailwindcss/typography": "0.2.0",
"@types/node": "14.11.5",
"@types/react": "16.9.51",
"next-compose-plugins": "2.2.0",
"postcss-nested": "5.0.1",
"postcss-preset-env": "6.7.0",
"react-test-renderer": "16.13.1",
"tailwindcss": "1.8.11",
"typescript": "4.0.3"
},
"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
}
}