-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.52 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
81
82
83
84
85
86
87
88
89
{
"name": "talohana.com",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "node scripts/generate-sitemap.mjs",
"start": "next start",
"analyze": "cross-env ANALYZE=true yarn build",
"test": "jest --watch",
"test:ci": "jest --ci",
"lint": "next lint",
"commit": "git-cz",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"@headlessui/react": "^1.6.5",
"@next/bundle-analyzer": "^12.0.10",
"@next/third-parties": "^14.2.3",
"@tailwindcss/forms": "^0.5.2",
"clsx": "^1.1.1",
"date-fns": "^2.28.0",
"next": "^14.2.3",
"next-compose-plugins": "^2.2.1",
"next-pwa": "^5.5.4",
"next-seo": "^5.4.0",
"next-themes": "^0.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"reading-time": "^1.5.0"
},
"devDependencies": {
"@babel/core": "^7.17.0",
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-essentials": "^6.4.19",
"@storybook/addon-links": "^6.4.22",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/react": "^6.4.13",
"@tailwindcss/typography": "^0.5.2",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/node": "20.12.7",
"@types/react": "18.0.9",
"autoprefixer": "^10.4.2",
"babel-jest": "^27.4.6",
"babel-loader": "^8.2.3",
"commitizen": "^4.2.4",
"cross-env": "^7.0.3",
"esbuild": "^0.14.42",
"eslint": "8",
"eslint-config-next": "^14.2.3",
"eslint-plugin-storybook": "^0.5.12",
"eslint-plugin-testing-library": "^5.0.3",
"globby": "^13.1.1",
"gray-matter": "^4.0.3",
"husky": "^7.0.4",
"jest": "^27.4.7",
"lint-staged": "^12.3.2",
"mdx-bundler": "^9.0.1",
"postcss": "^8.4.6",
"prettier": "^2.6.2",
"rehype": "^12.0.1",
"rehype-autolink-headings": "^6.1.1",
"rehype-code-titles": "^1.0.3",
"rehype-prism-plus": "^1.3.1",
"rehype-slug": "^5.0.1",
"remark-gfm": "^3.0.1",
"storybook-addon-next-router": "^3.1.1",
"tailwindcss": "^3.1.4",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typescript": "4.5.5"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
}
}