-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.93 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
{
"name": "portfolio3.0",
"description": "Portfolio 3.0",
"author": "Rijal Ghodi <rijalghodi10@gmail.com>",
"version": "0.1.0",
"private": true,
"license": "ISC",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint src --fix && yarn format",
"format": "prettier -w .",
"typecheck": "tsc --noEmit --incremental false",
"prepare": "husky install"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/server": "^11.11.0",
"@iconify/react": "^4.1.1",
"@mantine/core": "6.0.21",
"@mantine/hooks": "6.0.21",
"@mantine/next": "^6.0.21",
"@notion-render/bookmark-plugin": "^0.0.2",
"@notion-render/client": "^0.0.2",
"@notion-render/hljs-plugin": "^0.0.2",
"@notionhq/client": "^2.2.15",
"@tabler/icons-react": "^2.37.0",
"axios": "^1.6.8",
"dayjs": "^1.11.12",
"geist": "^1.3.1",
"highlight.js": "^11.9.0",
"next": "^13.5.3",
"next-progress": "^2.3.1",
"notion-client": "^6.16.0",
"notion-types": "^6.16.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-notion-x": "^6.16.0",
"react-query": "^3.39.3",
"sharp": "^0.33.5"
},
"devDependencies": {
"@types/node": "^20.7.2",
"@types/prismjs": "^1.26.3",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"eslint": "^8.50.0",
"eslint-config-next": "^13.5.3",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.0",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"typescript": "^5.0.0"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --max-warnings=0 --fix",
"prettier -w"
],
"**/*.{json,css,scss,md}": [
"prettier -w"
]
}
}