forked from Sitecore/developer-portal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.6 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.6 KB
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.1.0",
"private": true,
"engines": {
"node": ">=14.0.0 <15.0.0",
"npm": ">=7.0.0"
},
"lint-staged": {
"**/*.{js,jsx,json}": [
"eslint . --fix",
"prettier --write ."
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"generate-css-types": "tailwindcss-classnames -o ./src/common/types/tailwindcss-classnames.ts -x ./src/common/types/tailwindcss-custom-types.ts -i ./tailwind.config.js",
"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\""
},
"dependencies": {
"@coveo/headless": "^1.100.0",
"@remark-embedder/core": "^3.0.1",
"@remark-embedder/transformer-oembed": "^3.0.0",
"@types/lodash.throttle": "^4.1.7",
"axios": "^0.27.2",
"clsx": "^1.2.1",
"gray-matter": "^4.0.3",
"hast": "^1.0.0",
"hast-util-has-property": "^2.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": "^12.2.5",
"next-mdx-remote": "^4.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hooks-global-state": "^1.0.2",
"react-id-generator": "^3.0.2",
"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",
"tailwindcss-classnames": "^2.2.3",
"unist-util-visit": "^4.0.0"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@next/eslint-plugin-next": "^12.2.5",
"@tailwindcss/aspect-ratio": "^0.2.1",
"@tailwindcss/typography": "^0.4.0",
"@types/cors": "^2.8.12",
"@types/jest": "^29.0.0",
"@types/node": "^17.0.45",
"@types/react": "^17.0.49",
"@types/react-dom": "^17.0.17",
"@types/react-gtm-module": "^2.0.1",
"@types/react-syntax-highlighter": "^13.5.2",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"autoprefixer": "^10.3.1",
"eslint": "^8.23.0",
"eslint-plugin-react": "^7.31.1",
"husky": "^8.0.1",
"lint-staged": "^11.2.6",
"next-sitemap": "^1.9.9",
"postcss": "^8.3.6",
"postcss-import": "^14.0.2",
"prettier": "^2.7.1",
"react-gtm-module": "^2.0.11",
"tailwindcss": "^2.2.7",
"typescript": "^4.8.2"
}
}