forked from Sitecore/developer-portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.45 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
{
"name": "dev_portal",
"version": "1.2.0",
"private": true,
"engines": {
"node": ">=16.16.0",
"npm": ">=7.8.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint . --fix",
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"pre-commit": "lint-staged",
"pre-push": "tsc --project tsconfig.json",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"lint": "next lint",
"configure-husky": "npx husky install && npx husky add .husky/pre-commit \"npx --no-install lint-staged\"",
"analyze": "cross-env ANALYZE=true next build"
},
"dependencies": {
"@coveo/headless": "^1.105.1",
"@headlessui/react": "^1.7.10",
"@next/font": "^13.1.6",
"@remark-embedder/core": "^3.0.1",
"@remark-embedder/transformer-oembed": "^3.0.0",
"@types/lodash.throttle": "^4.1.7",
"axios": "^0.27.2",
"gray-matter": "^4.0.3",
"hast": "^1.0.0",
"hast-util-heading-rank": "^2.1.0",
"hast-util-to-string": "^2.0.0",
"hastscript": "^7.0.2",
"lodash.throttle": "^4.1.1",
"next": "^13.1.6",
"next-mdx-remote": "^4.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hooks-global-state": "^1.0.2",
"react-lite-youtube-embed": "^2.3.1",
"react-syntax-highlighter": "^15.5.0",
"react-twitter-embed": "^4.0.4",
"rehype-autolink-headings": "^6.1.1",
"rehype-slug": "^5.0.1",
"remark-gfm": "^2.0.0",
"unist-util-visit": "^4.0.0"
},
"devDependencies": {
"@babel/core": "^7.19.1",
"@next/bundle-analyzer": "^13.1.6",
"@next/eslint-plugin-next": "^12.3.1",
"@tailwindcss/typography": "^0.5.9",
"@types/node": "^17.0.45",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/react-gtm-module": "^2.0.1",
"@types/react-syntax-highlighter": "^13.5.2",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"autoprefixer": "^10.4.13",
"cross-env": "^7.0.3",
"eslint": "^8.24.0",
"eslint-config-next": "^13.1.6",
"eslint-plugin-react": "^7.31.8",
"husky": "^8.0.1",
"lint-staged": "^11.2.6",
"next-sitemap": "^1.9.9",
"postcss": "^8.4.21",
"postcss-import": "^15.1.0",
"prettier": "^2.7.1",
"react-gtm-module": "^2.0.11",
"tailwindcss": "^3.2.4",
"typescript": "^4.8.3"
}
}