forked from Hexlet/hexletguides.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.14 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
{
"name": "hexlet-guides",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": ">=16.x"
},
"simple-git-hooks": {
"pre-push": "make lint"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@mapbox/rehype-prism": "^0.8.0",
"@sentry/nextjs": "^7.17.3",
"bootstrap": "^5.1.3",
"date-fns": "^2.29.3",
"disqus-react": "^1.1.3",
"file-loader": "^6.2.0",
"gray-matter": "^4.0.3",
"lodash.capitalize": "^4.2.1",
"lodash.findlastindex": "^4.6.0",
"next": "^12.2.5",
"next-i18next": "^11.0.0",
"next-mdx-remote": "^4.1.0",
"next-sitemap": "^3.1.18",
"prop-types": "^15.8.1",
"raw-loader": "^4.0.2",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"rehype-slug": "^5.1.0",
"remark-gfm": "^3.0.1",
"sass": "^1.52.2",
"sass-loader": "^13.0.2",
"turbo-rss": "^2.0.1"
},
"devDependencies": {
"eslint": "^8.22.0",
"eslint-config-next": "^12.2.5",
"simple-git-hooks": "^2.8.1"
}
}