forked from leerob/mastering-nextjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.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
{
"name": "mastering-nextjs",
"description": "A free video course for building static and server-side rendered applications with Next.js and React.",
"version": "0.0.0",
"author": {
"name": "Lee Robinson",
"email": "me@leerob.io",
"url": "https://leerob.io"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/leerob/mastering-nextjs.git"
},
"scripts": {
"build": "next build",
"dev": "next",
"lint": "eslint . --ext .json --ext .js",
"prettier": "prettier --write \"**/*.{html,js,md,yml}\"",
"start": "next start",
"test": "yarn lint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{html,js,md,yml}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@chakra-ui/core": "0.7.0",
"@emotion/core": "10.0.28",
"@emotion/styled": "10.0.27",
"@mdx-js/loader": "^1.6.6",
"@mdx-js/react": "^1.6.6",
"@next/mdx": "^9.4.4",
"emotion-theming": "10.0.27",
"next": "9.4.0",
"next-seo": "4.4.0",
"react": "16.13.1",
"react-dom": "16.13.1"
},
"devDependencies": {
"eslint": "6.8.0",
"eslint-config-get-off-my-lawn": "5.0.1",
"globby": "11.0.0",
"husky": "4.2.3",
"lint-staged": "10.1.2",
"prettier": "2.0.2"
}
}