-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.86 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": "august-archive",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install"
},
"dependencies": {
"@notion-render/bookmark-plugin": "^0.0.2",
"@notion-render/client": "^0.0.2",
"@notion-render/hljs-plugin": "^0.0.2",
"@notionhq/client": "^2.2.13",
"@types/node": "20.5.7",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"axios": "^1.5.0",
"classnames": "^2.3.2",
"eslint-config-next": "13.4.19",
"highlight.js": "^11.8.0",
"next": "13.4.19",
"next-mdx-remote": "^4.4.1",
"prettier": "^3.0.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"recoil": "^0.7.7",
"rehype-autolink-headings": "^6.1.1",
"rehype-highlight": "^6.0.0",
"rehype-slug": "^6.0.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@types/gtag.js": "^0.0.17",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"encoding": "^0.1.13",
"eslint": "^8.46.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^5.0.0-canary-7118f5dd7-20230705",
"husky": "^8.0.0",
"lint-staged": "^13.2.3",
"sass": "^1.64.2",
"stylelint": "^15.10.2",
"stylelint-config-prettier-scss": "^1.0.0",
"stylelint-config-property-sort-order-smacss": "^9.1.0",
"stylelint-config-standard-scss": "^10.0.0",
"typescript": "^5.1.6"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
}
}