-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.61 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
{
"name": "next-js-boilerplate",
"version": "1.0.0",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"build-stats": "ANALYZE=true npm run build",
"export": "next export -o dist",
"build-prod": "run-s clean build export",
"clean": "rimraf .next dist",
"lint": "eslint --ext .js,.jsx,.ts,.tsx ."
},
"dependencies": {
"@mapbox/rehype-prism": "^0.5.0",
"date-fns": "^2.16.1",
"gray-matter": "^4.0.2",
"next": "^10.0.1",
"next-seo": "^4.15.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rehype-stringify": "^8.0.0",
"remark-parse": "^9.0.0",
"remark-rehype": "^8.0.0",
"styled-jsx-plugin-postcss": "^3.0.2",
"unified": "^9.2.0"
},
"license": "ISC",
"devDependencies": {
"@next/bundle-analyzer": "^10.0.1",
"@types/node": "^14.14.6",
"@types/react": "^16.9.56",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"eslint": "^7.13.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"npm-run-all": "^4.1.5",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"tailwindcss": "^1.9.6",
"typescript": "^4.0.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix",
"eslint"
],
"*.json": [
"prettier --write"
]
}
}