-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.16 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
79
80
81
82
83
{
"name": "hmgundu.dev",
"version": "1.0.0",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"test": "jest",
"analyze": "ANALYZE=true yarn build",
"prepare": "husky install",
"lint": "next lint"
},
"dependencies": {
"@mdx-js/loader": "^2.0.0",
"@mdx-js/react": "^2.0.0",
"@next/bundle-analyzer": "^12.1.0",
"@next/mdx": "^12.1.0",
"@react-spring/web": "^9.4.4",
"@tippyjs/react": "^4.2.5",
"conditional-wrap": "^1.0.0",
"date-fns": "^2.20.1",
"lodash.kebabcase": "^4.1.1",
"lodash.range": "^3.2.0",
"next": "^12.1.0",
"pagination": "^0.4.6",
"polished": "^4.2.2",
"prism-react-renderer": "^1.2.1",
"prismjs": "^1.27.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-feather": "^2.0.9",
"react-is": "^17.0.2",
"rebass": "^4.0.7",
"refractor": "^4.5.0",
"remark-slug": "^7.0.1",
"styled-components": "^5.3.5",
"terser": "^5.14.2"
},
"devDependencies": {
"@types/lodash.kebabcase": "^4.1.6",
"@types/lodash.range": "^3.2.6",
"@types/mdx": "^2.0.1",
"@types/node": "^17.0.23",
"@types/react": "17.0.43",
"@types/react-dom": "17.0.14",
"@types/rebass": "^4.0.8",
"@types/refractor": "^3.0.0",
"@types/styled-components": "5.1.24",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"eslint": "^8.12.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^12.1.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-mdx": "^1.17.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"husky": "^7.0.4",
"install": "^0.13.0",
"jest": "^27.5.1",
"lint-staged": ">=12.3.7",
"prettier": "^2.6.2",
"styled-reset": "^4.3.4",
"typescript": "4.6.3"
},
"engines": {
"node": ">= 18.0.0"
},
"license": "MIT",
"lint-staged": {
"*.{ts,tsx,js,css,json}": [
"prettier --write"
],
"*.{js,ts,tsx}": [
"eslint --fix"
],
"*.mdx": [
"prettier --write --parser mdx"
]
}
}