-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.55 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
{
"name": "rodion-dev-blog",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "npm run type:check && npm run prettier:check && npm run lint:code && npm run lint:style && npm run lint:md",
"type:check": "tsc --noEmit",
"lint:style": "stylelint \"**/*.scss\"",
"lint:code": "next lint",
"lint:md": "eslint \"./content/**/*.mdx\" --quiet",
"prettier:check": "prettier --check \"**/*.{ts,tsx,js,scss}\"",
"prettier:fix": "prettier --write \"**/*.{ts,tsx,js,scss}\"",
"test": "npm run lint"
},
"dependencies": {
"classnames": "^2.5.1",
"disqus-react": "^1.1.5",
"lunr": "^2.3.9",
"next": "^14.2.3",
"react": "18.3.1",
"react-dom": "18.2.0",
"throttle-debounce": "^5.0.0"
},
"devDependencies": {
"@jsdevtools/rehype-toc": "^3.0.2",
"@mdx-js/mdx": "^3.0.1",
"@types/js-yaml": "^4.0.9",
"@types/lunr": "^2.3.7",
"@types/node": "^20.12.7",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.2.25",
"@types/throttle-debounce": "^5.0.2",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.3",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-mdx": "^3.1.5",
"js-yaml": "^4.1.0",
"prettier": "^3.2.5",
"rehype-highlight": "^7.0.0",
"rehype-slug": "^6.0.0",
"remark-frontmatter": "^5.0.0",
"sass": "^1.75.0",
"stylelint": "^15.11.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-config-standard-scss": "^11.1.0",
"typescript": "^5.4.5"
}
}