-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
150 lines (150 loc) · 6.03 KB
/
package.json
File metadata and controls
150 lines (150 loc) · 6.03 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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
{
"name": "@eurekabox/source",
"version": "0.26.0",
"scripts": {
"clean:cache": "(rm -rf ./node_modules/.vite ./node_modules/.cache || true) && (rm -rf ./.nx || true)",
"prepare": "husky",
"lint": "npx nx run-many --target=lint",
"lint:fix": "npx nx run-many --target=lint --fix",
"prettier": "prettier --config ./.prettierrc --write \"**/*.{js,jsx,ts,json,tsx,scss,css,html}\"",
"prettier:staged": "prettier --config ./.prettierrc --write $(git diff --name-only --cached --diff-filter=AM | egrep '^(.*).(.ts*|.js*|.html|.json|.css|.scss)$')",
"build:all:dev": "npx nx run-many --target=build --configuration=dev --all",
"build:all:prod": "npx nx run-many --target=build --configuration=prod --all",
"!web": "------------- web scripts -------------",
"web:env:dev": "node ./scripts/create-env.js dev web",
"web:env:prod": "node ./scripts/create-env.js prod web",
"web:start": "yarn clean:cache && npx nx serve web --port 5001",
"web:build:dev": "yarn clean:cache && yarn web:env:dev && npx nx build --configuration=dev web",
"web:build:prod": "yarn clean:cache && yarn web:env:prod && npx nx build --configuration=prod web",
"web:deploy:dev": "(rm -rf ./dist/apps/web || true) && yarn web:build:dev && ./scripts/deploy-web.sh dev",
"web:deploy:prod": "(rm -rf ./dist/apps/web || true) && yarn web:build:prod && ./scripts/deploy-web.sh prod"
},
"private": true,
"dependencies": {
"@hookform/resolvers": "^3.9.1",
"@lemoncloud/lemon-web-core": "^1.4.1",
"@radix-ui/react-accordion": "^1.2.1",
"@radix-ui/react-alert-dialog": "^1.1.2",
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-checkbox": "^1.3.2",
"@radix-ui/react-dialog": "^1.1.4",
"@radix-ui/react-dropdown-menu": "^2.1.4",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-popover": "^1.1.14",
"@radix-ui/react-scroll-area": "^1.2.1",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-separator": "^1.1.1",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.2",
"@radix-ui/react-toast": "^1.2.2",
"@radix-ui/react-tooltip": "^1.1.6",
"@tanstack/react-query": "^5.62.2",
"@tanstack/react-query-devtools": "^5.62.2",
"@yoopta/accordion": "^4.9.4",
"@yoopta/action-menu-list": "^4.9.4",
"@yoopta/blockquote": "^4.9.4",
"@yoopta/callout": "^4.9.4",
"@yoopta/code": "^4.9.4",
"@yoopta/divider": "^4.9.4",
"@yoopta/editor": "^4.9.4",
"@yoopta/embed": "^4.9.4",
"@yoopta/exports": "^4.9.4",
"@yoopta/file": "^4.9.4",
"@yoopta/headings": "^4.9.4",
"@yoopta/image": "^4.9.4",
"@yoopta/link": "^4.9.4",
"@yoopta/link-tool": "^4.9.4",
"@yoopta/lists": "^4.9.4",
"@yoopta/marks": "^4.9.4",
"@yoopta/paragraph": "^4.9.4",
"@yoopta/table": "^4.9.4",
"@yoopta/toolbar": "^4.9.4",
"@yoopta/video": "^4.9.4",
"axios": "^1.7.9",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"crypto-js": "^4.2.0",
"date-fns": "^4.1.0",
"framer-motion": "^12.14.0",
"i18next": "^24.2.2",
"i18next-browser-languagedetector": "^8.0.2",
"i18next-chained-backend": "^4.6.2",
"i18next-http-backend": "^3.0.2",
"i18next-localstorage-backend": "^4.2.0",
"i18next-xhr-backend": "^3.2.2",
"lodash": "^4.17.21",
"lucide-react": "^0.465.0",
"moment": "^2.30.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-error-boundary": "^4.1.2",
"react-helmet-async": "^2.0.5",
"react-i18next": "^15.4.0",
"react-markdown": "^10.1.0",
"react-router-dom": "6.11.2",
"recharts": "^2.14.1",
"remark-gfm": "^4.0.1",
"slate": "^0.112.0",
"slate-dom": "^0.111.0",
"slate-react": "^0.112.0",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7",
"zustand": "^5.0.2",
"zustand-persist": "^0.4.0"
},
"devDependencies": {
"@babel/core": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.8.0",
"@lemoncloud/eureka-contents-api": "^0.25.224",
"@lemoncloud/ssocio-chatbots-api": "^0.25.604",
"@nx/eslint": "20.1.4",
"@nx/eslint-plugin": "20.1.4",
"@nx/jest": "20.1.4",
"@nx/js": "20.1.4",
"@nx/react": "20.1.4",
"@nx/vite": "20.1.4",
"@nx/web": "20.1.4",
"@nx/workspace": "20.1.4",
"@swc-node/register": "~1.9.1",
"@swc/cli": "~0.3.12",
"@swc/core": "~1.5.7",
"@swc/helpers": "~0.5.11",
"@testing-library/react": "15.0.6",
"@types/jest": "^29.5.12",
"@types/node": "18.16.9",
"@types/react": "18.3.1",
"@types/react-dom": "18.3.0",
"@vitejs/plugin-react": "^4.2.0",
"@vitest/coverage-v8": "^1.0.4",
"@vitest/ui": "^1.3.1",
"autoprefixer": "10.4.13",
"babel-jest": "^29.7.0",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "6.10.1",
"eslint-plugin-react": "7.35.0",
"eslint-plugin-react-hooks": "5.0.0",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "~22.1.0",
"nx": "20.1.4",
"postcss": "8.4.38",
"prettier": "^2.6.2",
"tailwindcss": "3.4.3",
"terser": "^5.37.0",
"ts-jest": "^29.1.0",
"ts-node": "10.9.1",
"tslib": "^2.3.0",
"typescript": "~5.5.2",
"typescript-eslint": "^8.0.0",
"vite": "^5.4.12",
"vite-plugin-svgr": "^4.3.0",
"vitest": "^1.3.1"
}
}