-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.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
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
{
"name": "a4rcvv-net",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap --config sitemap.config.js",
"start": "next start",
"lint": "next lint --dir src",
"lint:fix": "next lint --dir src --fix",
"format": "prettier --write --ignore-path .gitignore './**/*.{js,jsx,ts,tsx,json}'",
"prepare": "husky install",
"lint-staged": "lint-staged",
"serve": "npx serve out",
"analyze": "ANALYZE=true npm run build"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@fortawesome/fontawesome-svg-core": "^6.2.1",
"@fortawesome/free-brands-svg-icons": "^6.2.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@mui/icons-material": "^5.11.0",
"@mui/material": "^5.11.4",
"@next/bundle-analyzer": "^13.1.6",
"@reduxjs/toolkit": "^1.9.1",
"@types/react-syntax-highlighter": "^15.5.6",
"dayjs": "^1.11.7",
"gray-matter": "^4.0.3",
"next": "13.4.12",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-markdown": "^8.0.4",
"react-redux": "^8.0.5",
"react-syntax-highlighter": "^15.5.0",
"rehype-katex": "^6.0.2",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"remark-unwrap-images": "^3.0.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/gtag.js": "^0.0.12",
"@types/jest": "^29.2.5",
"@types/node": "18.17.0",
"@types/react": "18.2.*",
"@types/react-dom": "18.2.*",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"autoprefixer": "^10.4.14",
"eslint": "8.31.0",
"eslint-config-next": "^13.1.1",
"eslint-config-prettier": "^8.6.0",
"husky": "^7.0.0",
"jest": "^29.3.1",
"lint-staged": "^13.1.0",
"next-sitemap": "^3.1.52",
"postcss": "^8.4.23",
"prettier": "^2.8.2",
"serve": "^14.2.0",
"tailwindcss": "^3.3.2",
"ts-jest": "^29.0.4",
"typescript": "5.1.6"
},
"lint-staged": {
".{js,ts}": [
"npx eslint . --fix",
"npx prettier --write ."
]
},
"volta": {
"node": "18.17.0"
}
}