-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.98 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.98 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
{
"name": "blog",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"tsc": "tsc --project tsconfig.json --pretty --noEmit",
"lint": "eslint --ext ts,tsx --fix",
"lintall": "yarn tsc && yarn lint",
"pretti": "prettier --config ./.prettierrc.js -w ./src",
"postinstall": "husky install",
"test": "jest"
},
"dependencies": {
"@reduxjs/toolkit": "^2.0.1",
"babel-plugin-styled-components": "^2.1.4",
"beprofiler": "^0.2.3",
"date-fns": "^3.2.0",
"gray-matter": "^4.0.3",
"i18n-keys": "^1.0.8",
"i18next": "^23.7.16",
"lodash": "^4.17.21",
"next": "^14.0.4",
"next-redux-wrapper": "^8.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-markdown": "^9.0.1",
"react-redux": "^9.1.0",
"react-syntax-highlighter": "^15.5.0",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.0",
"styled-components": "^6.1.8",
"tailwindcss": "^3.4.1",
"twin.macro": "^3.4.0"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@types/jest": "^29.5.11",
"@types/lodash": "^4.14.202",
"@types/node": "^20.11.5",
"@types/react": "^18.2.48",
"@types/react-syntax-highlighter": "^15.5.11",
"@types/react-test-renderer": "^18.0.7",
"@types/styled-components": "^5.1.34",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"babel-jest": "^29.7.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-watch-typeahead": "^2.2.2",
"lint-staged": "^15.2.0",
"next-sitemap": "^4.2.3",
"prettier": "^3.2.4",
"react-test-renderer": "^18.2.0",
"typescript": "^5.3.3"
}
}