-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 2.96 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 2.96 KB
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "blog",
"version": "0.1.0",
"private": true,
"homepage": "http://blog.kyoongdev.com/",
"scripts": {
"dev": "next dev",
"local": "next local",
"build": "rimraf public/robots.txt public/sitemap*.xml & next build",
"postbuild": "next-sitemap --config sitemap.config.js",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"lint:fix": "eslint --fix --ext .js,.jsx,.ts,.tsx .",
"prettier:fix": "prettier src/**/*.ts src/**/*.tsx --write",
"stylelint:fix": "stylelint 'src/**/*.scss' --fix",
"pre-commit": "lint-staged"
},
"dependencies": {
"@notionhq/client": "^2.2.15",
"@tanstack/react-query": "^5.32.0",
"@types/node": "18.11.18",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
"@types/react-transition-group": "^4.4.5",
"@uiw/react-markdown-preview": "^4.1.10",
"@uiw/react-md-editor": "3.6.0",
"axios": "^1.2.5",
"clsx": "^1.2.1",
"dayjs": "^1.11.7",
"file-loader": "^6.2.0",
"jotai": "^2.8.0",
"lodash-es": "^4.17.21",
"next": "^14.2.3",
"next-remove-imports": "^1.0.8",
"notion-client": "^6.16.0",
"raw-loader": "^4.0.2",
"react": "18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.42.1",
"react-html-parser": "^2.0.2",
"react-intersection-observer": "^9.4.1",
"react-markdown": "^8.0.4",
"react-notion-x": "^6.16.0",
"react-query": "^3.39.3",
"react-syntax-highlighter": "^15.5.0",
"react-transition-group": "^4.4.5",
"react-use": "^17.4.0",
"remark-breaks": "^3.0.2",
"remark-gfm": "^3.0.1",
"sass": "^1.57.1",
"typescript": "4.9.4",
"url-loader": "^4.1.1"
},
"devDependencies": {
"@svgr/webpack": "^6.5.1",
"@types/axios": "^0.14.0",
"@types/react-html-parser": "^2.0.2",
"@types/react-syntax-highlighter": "^15.5.6",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"eslint": "^8.28.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^13.1.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.27.4",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-storybook": "^0.6.8",
"husky": "^8.0.2",
"lint-staged": "^13.0.4",
"next-sitemap": "^4.0.9",
"prettier": "^2.8.0",
"prop-types": "^15.8.1",
"stylelint": "^14.15.0",
"stylelint-config-recess-order": "^3.0.0",
"stylelint-config-standard-scss": "^6.1.0",
"stylelint-declaration-strict-value": "^1.9.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"yarn prettier:fix",
"yarn lint:fix"
],
"src/**/*.scss": [
"yarn stylelint:fix"
]
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
}
}