-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.98 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": "next-portfolio-sondh0127",
"version": "2.0.0",
"license": "MIT",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"type-check": "tsc",
"lint": "eslint --fix .",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./**/*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@badrap/bar-of-progress": "^0.1.2",
"@notionhq/client": "^1.0.4",
"@radix-ui/react-navigation-menu": "^0.1.2",
"@radix-ui/react-primitive": "^0.1.4",
"@radix-ui/react-select": "^0.1.1",
"@radix-ui/react-toast": "^0.1.1",
"@tailwindcss/typography": "^0.5.2",
"clsx": "^1.1.1",
"jotai": "^1.6.4",
"next": "^12.1.5",
"react": "18.0.0",
"react-dom": "18.0.0",
"tailwind-merge": "^1.2.1",
"tailwindcss": "^3.0.24",
"tailwindcss-radix": "^2.1.1"
},
"devDependencies": {
"@iconify-json/carbon": "^1.1.3",
"@iconify-json/logos": "^1.1.5",
"@svgr/core": "^6.2.1",
"@tailwindcss/forms": "^0.5.0",
"@tailwindcss/line-clamp": "^0.3.1",
"@types/node": "^17.0.25",
"@types/react": "^18.0.6",
"@types/react-dom": "^18.0.2",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"autoprefixer": "^10.4.4",
"eslint": "^8.14.0",
"eslint-config-next": "12.1.5",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-split-classnames": "^0.0.4",
"husky": "^7.0.4",
"lint-staged": "^12.4.0",
"postcss": "^8.4.12",
"postcss-import": "^14.1.0",
"prettier": "^2.6.2",
"typescript": "4.6.3",
"unplugin-auto-import": "0.7.1",
"unplugin-icons": "^0.14.1"
}
}