-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.36 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
{
"name": "jakeer.com",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=14.0.0",
"yarn": ">=1.22.0",
"npm": ">=8.0.0"
},
"scripts": {
"dev": "cross-env NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier": "prettier --write .",
"prepare": "husky install",
"storybook": "start-storybook -p 5000",
"build-storybook": "build-storybook"
},
"dependencies": {
"@giscus/react": "^2.0.4",
"@headlessui/react": "^1.6.1",
"axios": "^0.27.2",
"cloudinary-build-url": "^0.2.4",
"clsx": "^1.1.1",
"date-fns": "^2.28.0",
"lodash": "^4.17.21",
"next": "12.1.6",
"next-themes": "^0.2.0",
"nprogress": "^0.2.0",
"prop-types": "^15.8.1",
"react": "18.1.0 || ^17.0.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "18.1.0 || ^17.0.0",
"react-hook-form": "^7.30.0",
"react-icons": "^4.3.1",
"react-image-lightbox": "^5.1.4",
"react-tippy": "^1.4.0",
"react-twitter-widgets": "^1.10.0",
"swr": "^1.3.0"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@commitlint/cli": "^16.2.4",
"@commitlint/config-conventional": "^16.2.4",
"@storybook/addon-actions": "^6.4.22",
"@storybook/addon-essentials": "^6.4.22",
"@storybook/addon-interactions": "^6.4.22",
"@storybook/addon-links": "^6.4.22",
"@storybook/react": "^6.4.22",
"@storybook/testing-library": "^0.0.11",
"@tailwindcss/forms": "^0.5.1",
"@tailwindcss/typography": "^0.5.2",
"autoprefixer": "^10.4.7",
"babel-loader": "^8.2.5",
"cross-env": "^7.0.3",
"esbuild": "^0.14.38",
"eslint": "8.15.0",
"eslint-config-next": "12.1.6",
"eslint-plugin-storybook": "^0.5.11",
"gray-matter": "^4.0.3",
"husky": "^7.0.4",
"lint-staged": "^12.4.1",
"mdx-bundler": "^9.0.0",
"postcss": "^8.4.13",
"prettier": "^2.6.2",
"prettier-plugin-tailwindcss": "^0.1.10",
"reading-time": "^1.5.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-prism-plus": "^1.3.2",
"rehype-slug": "^5.0.1",
"remark-gfm": "^3.0.1",
"standard-version": "^9.3.2",
"tailwindcss": "^3.0.24"
},
"lint-staged": {
"*.{vue,js,jsx,cjs,mjs}": "eslint --cache --fix --cache-location ./node_modules/.cache/eslint/.eslintcache",
"*.{js,css,md}": "prettier --write"
}
}