-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
107 lines (107 loc) · 3.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
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
102
103
104
105
106
107
{
"name": "agent-portal",
"version": "0.1.0",
"scripts": {
"build": "next build",
"build:analyze": "cross-env ANALYZE=true next build",
"dev": "node server.mjs",
"lint": "npm run lint:es && npm run lint:style",
"lint-fix": "npm run lint-fix:es && npm run lint-fix:style",
"lint-fix:es": "eslint --ext .jsx,.js,.tsx,.ts src --fix",
"lint-fix:style": "stylelint \"{src,tests}/**/*.{css,less,js,jsx,ts,tsx}\" --fix",
"lint:es": "eslint --ext .jsx,.js,.tsx,.ts src",
"lint:style": "stylelint \"{src,tests}/**/*.{css,less,js,jsx,ts,tsx}\"",
"prepare": "husky install",
"prettier": "prettier --write '**/*.{js,jsx,tsx,ts,less,md,json}'",
"start": "cross-env NODE_ENV=production node server.mjs",
"start:https": "cross-env NODE_ENV=production PWA=true node server.mjs"
},
"lint-staged": {
"*.md": [
"remark --quiet --output --",
"prettier --write --no-error-on-unmatched-pattern"
],
"*.json": [
"prettier --write --no-error-on-unmatched-pattern"
],
"*.{css,less}": [
"stylelint --fix --allow-empty-input",
"prettier --write"
],
"*.{js,jsx}": [
"stylelint --fix --allow-empty-input",
"eslint --fix",
"prettier --write"
],
"*.{ts,tsx}": [
"stylelint --fix",
"eslint --fix",
"prettier --parser=typescript --write"
]
},
"dependencies": {
"@ant-design/icons": "^5.2.6",
"@ant-design/nextjs-registry": "^1.0.0",
"@lobehub/ui": "^1.125.8",
"@next/mdx": "^14.0.4",
"@reduxjs/toolkit": "^2.0.1",
"@svgr/webpack": "^8.1.0",
"@yuntijs/arcadia-bff-sdk": "^1.2.7",
"@yuntijs/bff-client": "^0.3.3",
"@yuntijs/chat": "0.1.0-beta.13",
"antd": "^5.12.6",
"antd-mobile": "^5.34.0",
"antd-style": "^3.6.1",
"axios": "^1.6.7",
"axios-hooks": "^5.0.2",
"babel-runtime": "^6.26.0",
"classnames": "^2.5.1",
"express": "^4.18.2",
"http-proxy-middleware": "^2.0.6",
"lodash": "^4.17.21",
"lucide-react": "^0.304.0",
"next": "^14.1.0",
"next-intl": "^3.9.1",
"nuqs": "^1.17.1",
"query-string": "^8.1.0",
"react": "^18",
"react-dom": "^18",
"react-infinite-scroll-component": "^6.1.0",
"react-layout-kit": "^1.7.4",
"react-redux": "^9.0.4",
"redux": "^5.0.1",
"sharp": "^0.33.2",
"swr": "^2.2.4",
"ua-parser-js": "2.0.0-alpha.2"
},
"devDependencies": {
"@ducanh2912/next-pwa": "^10.2.2",
"@next/bundle-analyzer": "^14.1.0",
"@types/lodash": "^4.14.202",
"@types/mdx": "^2.0.10",
"@types/node": "^20",
"@types/query-string": "^6.3.0",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/ua-parser-js": "^0.7.39",
"@yuntijs/lint": "^1.4.0",
"commitlint": "^18.4.3",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-next": "14.0.4",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"remark": "^15.0.1",
"remark-cli": "^12.0.0",
"stylelint": "^15",
"tslib": "^2.6.2",
"typescript": "^5",
"webpack": "^5.89.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.17.0",
"pnpm": ">=8.12.0"
}
}