-
Notifications
You must be signed in to change notification settings - Fork 73
/
package.json
101 lines (101 loc) · 3.2 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "ts-nextjs-tailwind-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "cross-env NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"build:dep": "cross-env ANALYZE=true next build",
"start": "next start",
"server_start": "pm2 start ecosystem.config.js",
"server_reload": "next build && next-sitemap --config next-sitemap.config.js && pm2 reload ecosystem.config.js",
"server_stop": "pm2 stop ecosystem.config.js",
"lint": "next lint",
"lint:fix": "eslint src --fix && yarn format",
"lint:strict": "eslint --max-warnings=0 src",
"typecheck": "tsc --noEmit --incremental false",
"test:watch": "jest --watch",
"test": "jest",
"format": "prettier -w .",
"format:check": "prettier -c .",
"release": "standard-version",
"push-release": "git push --follow-tags origin main",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"prepare": "husky install"
},
"dependencies": {
"@next/bundle-analyzer": "^12.3.1",
"classnames": "^2.3.1",
"clsx": "^1.1.1",
"cookie-parser": "^1.4.6",
"copy-to-clipboard": "^3.3.2",
"dayjs": "^1.11.3",
"echarts": "^5.4.2",
"echarts-for-react": "^3.0.2",
"express": "^4.18.1",
"i18next": "^23.11.5",
"js-cookie": "^3.0.5",
"next": "^12.1.6",
"next-i18next": "^15.3.0",
"nprogress": "^0.2.0",
"pino-http": "^10.2.0",
"raw-loader": "^4.0.2",
"rc-util": "^5.34.1",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-i18next": "^14.1.2",
"react-icons": "^4.3.1",
"react-infinite-scroll-hook": "^4.0.3",
"react-markdown": "^9.0.1",
"react-syntax-highlighter": "^15.5.0",
"remark-gfm": "^4.0.0",
"sortablejs": "^1.15.0",
"swr": "^1.3.0",
"tailwind-merge": "^1.2.1"
},
"devDependencies": {
"@commitlint/cli": "^16.3.0",
"@commitlint/config-conventional": "^16.2.4",
"@svgr/webpack": "^6.2.1",
"@tailwindcss/forms": "^0.5.2",
"@tailwindcss/line-clamp": "^0.4.0",
"@tailwindcss/typography": "^0.5.7",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@types/react": "^18.0.9",
"@types/react-syntax-highlighter": "^15.5.3",
"@types/sortablejs": "^1.15.2",
"@types/tailwindcss": "^3.0.10",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"autoprefixer": "^10.4.7",
"babel-plugin-import": "^1.13.5",
"cross-env": "^7.0.3",
"eslint": "^8.16.0",
"eslint-config-next": "^12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.4.2",
"next-sitemap": "^2.5.25",
"postcss": "^8.4.14",
"prettier": "^2.6.2",
"prettier-plugin-tailwindcss": "^0.1.11",
"standard-version": "^9.5.0",
"tailwindcss": "^3.0.24",
"typescript": "^4.7.2"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --max-warnings=20",
"prettier -w"
],
"src/**/*.{json,css,scss,md}": [
"prettier -w"
]
}
}