-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.18 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
{
"name": "website",
"version": "0.1.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lourddev/website.git"
},
"license": "UNLICENSED",
"homepage": "https://lourd.dev",
"dependencies": {
"@emotion/core": "10.1.1",
"@emotion/styled": "10.3.0",
"date-fns": "2.28.0",
"gray-matter": "4.0.3",
"highlight.js": "11.3.1",
"marked": "4.0.16",
"next": "12.1.0",
"next-seo": "5.5.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-ga": "3.3.0",
"styled-system": "5.1.5"
},
"devDependencies": {
"@commitlint/cli": "13.2.1",
"@types/highlight.js": "10.1.0",
"@types/marked": "4.0.3",
"@types/node": "17.0.21",
"@types/react": "17.0.39",
"@types/styled-system": "5.1.13",
"conventional-changelog-gitmoji": "0.2.5",
"eslint": "8.20.0",
"eslint-config-next": "12.1.6",
"husky": "7.0.4",
"jest": "27.5.1",
"lint-staged": "12.3.5",
"prettier": "2.6.2",
"typescript": "4.6.2"
},
"lint-staged": {
"*.{js,ts,tsx,css,json,md}": [
"prettier --write"
]
}
}